本文整理匯總了Java中org.openqa.selenium.remote.server.log.PerSessionLogHandler類的典型用法代碼示例。如果您正苦於以下問題:Java PerSessionLogHandler類的具體用法?Java PerSessionLogHandler怎麽用?Java PerSessionLogHandler使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
PerSessionLogHandler類屬於org.openqa.selenium.remote.server.log包,在下文中一共展示了PerSessionLogHandler類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: call
import org.openqa.selenium.remote.server.log.PerSessionLogHandler; //導入依賴的package包/類
@Override
public Void call() throws Exception {
WebDriver driver = getDriver();
if (driver == null) {
return null;
}
try {
LoggingManager.perSessionLogHandler().fetchAndStoreLogsFromDriver(getSessionId(), driver);
} catch (Throwable ignored) {
// A failure to retrieve logs should not cause a test to fail.
// Silently ignore this exception.
}
driver.quit();
// Yes, this is funky. See javadocs on PerSessionLogHandler#clearThreadTempLogs for details.
final PerSessionLogHandler logHandler = LoggingManager.perSessionLogHandler();
/*
We may be storing logging information on 2 different threads, the servlet container
thread and the thread executing commands
All this ugliness would go away if we just handled create and delete of sessions fully
inside ResultConfig because then we could avoid switching threads and there will
not be logevents that do not have a session present
Additionally; if we ever get non-session bound logging here, it will come in
the incorrect order. But that should only happen on create/delete, right ?
*/
logHandler.transferThreadTempLogsToSessionLogs(getSessionId());
return null;
}
示例2: checkExpiry
import org.openqa.selenium.remote.server.log.PerSessionLogHandler; //導入依賴的package包/類
void checkExpiry() {
for (SessionId sessionId : driverSessions.getSessions()) {
Session session = driverSessions.get(sessionId);
if (session != null) {
boolean useDeleteSession = false;
boolean killed = false;
boolean inUse = session.isInUse();
if (!inUse && session.isTimedOut(clientGoneTimeout)) {
useDeleteSession = true;
log.info("Session " + session.getSessionId() + " deleted due to client timeout");
}
if (inUse && session.isTimedOut(insideBrowserTimeout)) {
WebDriver driver = session.getDriver();
if (driver instanceof EventFiringWebDriver){
driver = ((EventFiringWebDriver)driver).getWrappedDriver();
}
if (driver instanceof Killable) {
//session.interrupt();
((Killable) driver).kill();
killed = true;
log.warning("Browser killed and session " + session.getSessionId() + " terminated due to in-browser timeout.");
} else {
useDeleteSession = true;
log.warning("Session " + session.getSessionId() + " deleted due to in-browser timeout. " +
"Terminating driver with DeleteSession since it does not support Killable, "
+ "the driver in question does not support selenium-server timeouts fully");
}
}
if (useDeleteSession) {
DeleteSession deleteSession = new DeleteSession(session);
try {
deleteSession.call();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
if (useDeleteSession || killed) {
driverSessions.deleteSession(sessionId);
final PerSessionLogHandler logHandler = LoggingManager.perSessionLogHandler();
logHandler.transferThreadTempLogsToSessionLogs(sessionId);
logHandler.removeSessionLogs(sessionId);
}
}
}
}