Selenium Python - Selenium Grid
Given the following Selenium Grid setup code snippet, what will be the output when the test runs?
from selenium import webdriver from selenium.webdriver.common.desired_capabilities import DesiredCapabilities hub_url = "http://localhost:4444/wd/hub" driver = webdriver.Remote(command_executor=hub_url, desired_capabilities=DesiredCapabilities.CHROME) print(driver.capabilities['browserName']) driver.quit()
