Is there a way to tell chromedriver (the webdriver implementation within Chrome) to use Canary, Beta or current production chrome?
相关问题
- Cloudflare and Chromedriver - cloudflare distingui
- selenium driver, option inside optgroup fails to e
- Selenium WebDriver loses connection to web page
- Chrome not rendering fonts when opened in terminal
- Selenium newer Chrome cannot disable browser notif
相关文章
- driver.Manage().Logs.GetLog(LogType.Browser) no lo
- unknown error: failed to write prefs file
- Protractor webdriver-manager chromedriver update
- Python Selenium Send Keys Giving Warning about siz
- How to Fix this C# issue No test matches the given
- how to export html table data displayed in web pag
- Python Selenium Chrome Disable Pop Up Blocker
- Selenium webdriver.Remote driver does not work wit
It should be this Google Chrome Canary.app and not just Google Chrome.app.
Try this:
You can ask ChromeDriver to use a Chrome executable in a non-standard location
On Mac OS X, this should be the actual binary, not just the app. e.g.,
/Applications/Google Chrome.app/Contents/MacOS/Google Chrome
.[via chromedriver Capabilities and Switches]
And the way to do this in theintern is by the following config
Also, if you're looking to configure the selenium node directly here's how to pass the configuration in:
}