Method: Selenium::WebDriver::SeleniumManager.binary_paths
- Defined in:
- lib/selenium/webdriver/common/selenium_manager.rb
permalink .binary_paths(*arguments) ⇒ Hash
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns paths to the requested assets.
39 40 41 42 43 44 45 |
# File 'lib/selenium/webdriver/common/selenium_manager.rb', line 39 def binary_paths(*arguments) arguments += %w[--language-binding ruby] arguments += %w[--output json] arguments << '--debug' if WebDriver.logger.debug? run(binary, *arguments) end |