Files
authentik/web/types/webdriver.d.ts
2025-05-23 13:14:22 +02:00

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