github mherrmann/selenium-python-helium v3.0.2
Make it possible to supply ChromeOptions to start_chrome

latest releases: v3.0.8, v3.0.7, v3.0.6...
4 years ago

Added an argument options to start_chrome(...). You can use it to supply the ChromeOptions when starting the browser. For example:

from selenium.webdriver import ChromeOptions
options = ChromeOptions()
options.add_argument('--start-maximized')
options.add_argument('--proxy-server=1.2.3.4:5678')
start_chrome(options=options)

Don't miss a new selenium-python-helium release

NewReleases is sending notifications on new releases.