mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-21 11:09:53 +08:00
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
/// <reference path="selenium-webdriver.d.ts" />
|
|
/// <reference path="executors.d.ts" />
|
|
|
|
function TestExecutors() {
|
|
var exec: webdriver.CommandExecutor = executors.createExecutor("url");
|
|
exec = executors.createExecutor(new webdriver.promise.Promise<string>());
|
|
}
|
|
|