Method: Selenium::WebDriver::SeleniumManager.binary_paths

Defined in:
lib/selenium/webdriver/common/selenium_manager.rb

.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.

Parameters:

  • arguments (Array)

    what gets sent to to Selenium Manager binary.

Returns:

  • (Hash)

    paths to the requested assets.

[View source]

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