Example usage for org.openqa.selenium.remote.server KnownElements KnownElements

List of usage examples for org.openqa.selenium.remote.server KnownElements KnownElements

Introduction

In this page you can find the example usage for org.openqa.selenium.remote.server KnownElements KnownElements.

Prototype

KnownElements

Source Link

Usage

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>());
}