docker-compose up -d
docker-compose -f docker-compose-selenoid.yaml up -d
CREATE DATABASE healenium;
CREATE USER healenium_user WITH ENCRYPTED PASSWORD 'YDk2nmNs4s9aCP6K';
GRANT ALL PRIVILEGES ON DATABASE healenium TO healenium_user;
ALTER USER healenium_user WITH SUPERUSER;
\c healenium healenium_user;
CREATE SCHEMA healenium AUTHORIZATION healenium_user;
GRANT USAGE ON SCHEMA healenium TO healenium_user;
java -jar selenium-server-4.25.0.jar standalone
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);