# Set up the remote WebDriver capabilities = DesiredCapabilities.CHROME driver = webdriver.Remote( command_executor='http://localhost:4444/wd/hub', desired_capabilities=capabilities )
For modern WebDriver tests (where you use drivers like ChromeDriver, GeckoDriver directly), you do not need the Selenium Server. You only need it for: selenium server standalone jar download
# Set up the remote WebDriver capabilities = DesiredCapabilities.CHROME driver = webdriver.Remote( command_executor='http://localhost:4444/wd/hub', desired_capabilities=capabilities )
For modern WebDriver tests (where you use drivers like ChromeDriver, GeckoDriver directly), you do not need the Selenium Server. You only need it for: