How to use the Remote function from selenium-webdriver

Find comprehensive JavaScript selenium-webdriver.Remote code examples handpicked from public code repositorys.

143
144
145
146
147
148
149
150
151
#Replace the version to match the Chrome version
import selenium.webdriver.common.devtools.v93 as devtools

async def geoLocationTest():
    chrome_options = webdriver.ChromeOptions()
    driver = webdriver.Remote(
        command_executor='<grid-url>',
        options=chrome_options
    )
fork icon916
star icon568
watch icon29