io.github.bonigarcia.wdm.webdriver.WebDriverCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webdrivermanager Show documentation
Show all versions of webdrivermanager Show documentation
Automated driver management and other helper features for Selenium
WebDriver in Java
/*
* (C) Copyright 2021 Boni Garcia (https://bonigarcia.github.io/)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package io.github.bonigarcia.wdm.webdriver;
import static java.lang.invoke.MethodHandles.lookup;
import static org.slf4j.LoggerFactory.getLogger;
import java.lang.reflect.InvocationTargetException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.slf4j.Logger;
import io.github.bonigarcia.wdm.config.Config;
import io.github.bonigarcia.wdm.config.WebDriverManagerException;
/**
* Builder for WebDriver objects.
*
* @author Boni Garcia
* @since 5.0.0
*/
public class WebDriverCreator {
final Logger log = getLogger(lookup().lookupClass());
static final int POLL_TIME_SEC = 1;
Config config;
public WebDriverCreator(Config config) {
this.config = config;
}
public synchronized WebDriver createLocalWebDriver(Class> browserClass,
Capabilities capabilities)
throws InstantiationException, IllegalAccessException,
InvocationTargetException, NoSuchMethodException {
WebDriver driver;
if (capabilities != null) {
driver = (WebDriver) browserClass
.getDeclaredConstructor(capabilities.getClass())
.newInstance(capabilities);
} else {
driver = (WebDriver) browserClass.getDeclaredConstructor()
.newInstance();
}
return driver;
}
public WebDriver createRemoteWebDriver(String remoteUrl,
Capabilities capabilities) {
WebDriver webdriver = null;
int waitTimeoutSec = config.getTimeout();
long timeoutMs = System.currentTimeMillis()
+ TimeUnit.SECONDS.toMillis(waitTimeoutSec);
String browserName = capabilities.getBrowserName();
log.debug("Creating WebDriver object for {} at {} with {}", browserName,
remoteUrl, capabilities);
do {
try {
URL url = new URL(remoteUrl);
HttpURLConnection huc = (HttpURLConnection) url
.openConnection();
huc.connect();
int responseCode = huc.getResponseCode();
log.trace("Requesting {} (the response code is {})", remoteUrl,
responseCode);
if (config.getEnableTracing()) {
webdriver = new RemoteWebDriver(url, capabilities);
} else {
webdriver = new RemoteWebDriver(url, capabilities, false);
}
} catch (Exception e1) {
try {
log.trace("{} creating WebDriver object ({})",
e1.getClass().getSimpleName(), e1.getMessage());
if (System.currentTimeMillis() > timeoutMs) {
throw new WebDriverManagerException(
"Timeout of " + waitTimeoutSec
+ " seconds creating WebDriver object",
e1);
}
Thread.sleep(TimeUnit.SECONDS.toMillis(POLL_TIME_SEC));
} catch (InterruptedException e2) {
log.warn("Interrupted exception creating WebDriver object",
e2);
Thread.currentThread().interrupt();
}
}
} while (webdriver == null);
return webdriver;
}
public String getSessionId(WebDriver webDriver) {
String sessionId = ((RemoteWebDriver) webDriver).getSessionId()
.toString();
log.debug("The sessionId is {}", sessionId);
return sessionId;
}
}