15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
declare namespace WebdriverIO {
|
|
interface Element {
|
|
/**
|
|
* Focus on the element.
|
|
* @monkeypatch
|
|
*/
|
|
focus(): Promise<void>;
|
|
/**
|
|
* Blur the element.
|
|
* @monkeypatch
|
|
*/
|
|
blur(): Promise<void>;
|
|
}
|
|
}
|