We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d999931 commit 59b8f23Copy full SHA for 59b8f23
rb/lib/selenium/webdriver/common/selenium_manager.rb
@@ -41,8 +41,8 @@ def driver_path(options)
41
42
output = run(*command)
43
44
- browser_path = output['browser_path']
45
- driver_path = output['driver_path']
+ browser_path = Platform.cygwin? ? Platform.cygwin_path(output['browser_path']) : output['browser_path']
+ driver_path = Platform.cygwin? ? Platform.cygwin_path(output['driver_path']) : output['driver_path']
46
Platform.assert_executable driver_path
47
48
if options.respond_to?(:binary) && browser_path && !browser_path.empty?
0 commit comments