本文整理汇总了Java中org.openqa.selenium.net.UrlChecker类的典型用法代码示例。如果您正苦于以下问题:Java UrlChecker类的具体用法?Java UrlChecker怎么用?Java UrlChecker使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
UrlChecker类属于org.openqa.selenium.net包,在下文中一共展示了UrlChecker类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: stopGridNode
import org.openqa.selenium.net.UrlChecker; //导入依赖的package包/类
/**
* Stop the configured Selenium Grid node server.
*
* @param localOnly 'true' to target only local Grid node server
* @return 'false' if [localOnly] and node is remote; otherwise 'true'
*/
public static boolean stopGridNode(boolean localOnly) {
if (localOnly && !isLocalNode()) {
return false;
}
RegistrationRequest nodeConfig = SeleniumConfig.getConfig().getNodeConfig();
if (isNodeActive(nodeConfig)) {
HttpHost nodeHost = GridUtility.getNodeHost(nodeConfig);
try {
GridUtility.getHttpResponse(nodeHost, NODE_SHUTDOWN);
new UrlChecker().waitUntilUnavailable(SHUTDOWN_DELAY, TimeUnit.SECONDS, URI.create(nodeHost.toURI()).toURL());
} catch (IOException | TimeoutException e) {
throw UncheckedThrow.throwUnchecked(e);
}
}
setNodeProcess(null);
return true;
}
示例2: stopGridHub
import org.openqa.selenium.net.UrlChecker; //导入依赖的package包/类
/**
* Stop the configured Selenium Grid hub server.
*
* @param localOnly 'true' to target only local Grid hub server
* @return 'false' if [localOnly] and hub is remote; otherwise 'true'
*/
public static boolean stopGridHub(boolean localOnly) {
if (localOnly && !isLocalHub()) {
return false;
}
GridHubConfiguration hubConfig = SeleniumConfig.getConfig().getHubConfig();
if (isHubActive(hubConfig)) {
HttpHost hubHost = GridUtility.getHubHost(hubConfig);
try {
GridUtility.getHttpResponse(hubHost, HUB_SHUTDOWN);
new UrlChecker().waitUntilUnavailable(SHUTDOWN_DELAY, TimeUnit.SECONDS, URI.create(hubHost.toURI()).toURL());
} catch (IOException | TimeoutException e) {
throw UncheckedThrow.throwUnchecked(e);
}
}
setHubProcess(null);
return true;
}
示例3: stopGridNode
import org.openqa.selenium.net.UrlChecker; //导入依赖的package包/类
/**
* Stop the configured Selenium Grid node server.
*
* @param localOnly 'true' to target only local Grid node server
* @return 'false' if [localOnly] and node is remote; otherwise 'true'
*/
public static boolean stopGridNode(boolean localOnly) {
if (localOnly && !isLocalNode()) {
return false;
}
GridNodeConfiguration nodeConfig = SeleniumConfig.getConfig().getNodeConfig();
if (isNodeActive(nodeConfig)) {
HttpHost nodeHost = GridUtility.getNodeHost(nodeConfig);
try {
GridUtility.getHttpResponse(nodeHost, NODE_SHUTDOWN);
new UrlChecker().waitUntilUnavailable(SHUTDOWN_DELAY, TimeUnit.SECONDS, URI.create(nodeHost.toURI()).toURL());
} catch (IOException | TimeoutException e) {
throw UncheckedThrow.throwUnchecked(e);
}
}
setNodeProcess(null);
return true;
}
示例4: isRunning
import org.openqa.selenium.net.UrlChecker; //导入依赖的package包/类
@Override public boolean isRunning() {
lock.lock();
try {
if (process == null) {
return false;
}
if (!process.isRunning()) {
return false;
}
try {
ping(1500, TimeUnit.MILLISECONDS);
return true;
} catch (UrlChecker.TimeoutException e) {
return false;
}
} finally {
lock.unlock();
}
}
示例5: ping
import org.openqa.selenium.net.UrlChecker; //导入依赖的package包/类
private void ping(long time, TimeUnit timeUnit) throws UrlChecker.TimeoutException {
URL url = getUrl();
try {
URL status = new URL(url.toString() + "/status");
new UrlChecker().waitUntilAvailable(time, timeUnit, status);
} catch (MalformedURLException e) {
throw new RuntimeException(
"URL出错 " + url.toString().toString() + "/status");
}
}
示例6: startGridServer
import org.openqa.selenium.net.UrlChecker; //导入依赖的package包/类
/**
* Start the specified Selenium Grid server.
* @param serverParms Selenium Grid server parameters
*
* @throws TimeoutException If Grid server took too long to activate.
*/
private static void startGridServer(GridServerParms serverParms) throws TimeoutException {
Process serverProcess = GridProcess.start(serverParms.processArgs);
new UrlChecker().waitUntilAvailable(WaitType.HOST.getInterval(), TimeUnit.SECONDS, serverParms.statusUrl);
setProcess(serverParms.processRole, serverProcess);
}