web: Clean up test types.
This commit is contained in:
14
web/types/webdriver.d.ts
vendored
Normal file
14
web/types/webdriver.d.ts
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
declare namespace WebdriverIO {
|
||||
interface Element {
|
||||
/**
|
||||
* Focus on the element.
|
||||
* @monkeypatch
|
||||
*/
|
||||
focus(): Promise<void>;
|
||||
/**
|
||||
* Blur the element.
|
||||
* @monkeypatch
|
||||
*/
|
||||
blur(): Promise<void>;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user