Remove ILocatorStrategy

This commit is contained in:
Kuniwak
2015-07-10 14:59:55 +09:00
parent 4aaf75d9f2
commit 04fd7c612d
3 changed files with 18 additions and 15 deletions
-14
View File
@@ -5024,20 +5024,6 @@ declare module webdriver {
{xpath: string};
}
// For angular-protractor/angular-protractor-tests.ts
interface ILocatorStrategy {
className(value: string): Locator;
css(value: string): Locator;
id(value: string): Locator;
linkText(value: string): Locator;
js(script: any, ...var_args: any[]): (WebDriver: webdriver.WebDriver) => webdriver.promise.Promise<any>;
name(value: string): Locator;
partialLinkText(value: string): Locator;
tagName(value: string): Locator;
xpath(value: string): Locator;
}
/**
* An element locator.
*/