List of usage examples for org.openqa.selenium.remote.server KnownElements KnownElements
KnownElements
From source file:org.openqa.testing.TestSession.java
License:Apache License
public TestSession(SessionId sessionId, WebDriver driver, Capabilities capabilities) { this.sessionId = sessionId; this.driver = driver; this.capabilities = capabilities; this.knownElements = new KnownElements(); this.executor = new ThreadPoolExecutor(1, 1, 600L, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>()); }