docker-compose up -d
docker-compose -f docker-compose-selenoid.yaml up -d
nodeURL = "http://localhost:8085"
options = webdriver.ChromeOptions()
current_webdriver = webdriver.Remote(
command_executor=nodeURL,
desired_capabilities=webdriver.DesiredCapabilities.CHROME,
options=options,
)
String nodeURL = "http://localhost:8085";
ChromeOptions options = new ChromeOptions();
WebDriver driver = new RemoteWebDriver(new URL(nodeURL), options);
const NODE_URL = "http://localhost:8085";
let args = [
"--no-sandbox"
];
let chromeCapabilities = selenium.Capabilities.chrome()
.set('chromeOptions', { args });
let builder = new selenium.Builder()
.forBrowser('chrome')
.withCapabilities(chromeCapabilities);
let driver = await builder.usingServer(NODE_URL).build();
String nodeURL = "http://localhost:8085";
ChromeOptions optionsChrome = new ChromeOptions();
optionsChrome.AddArguments("--no-sandbox");
RemoteWebDriver driverChrome = new RemoteWebDriver(new Uri(nodeURL), optionsChrome);