mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
7 lines
260 B
TypeScript
7 lines
260 B
TypeScript
import SeleniumWebdriver, { WebDriver, Locator } from "selenium-webdriver";
|
|
|
|
export default async function(driver: WebDriver, locator: Locator) {
|
|
const el = await driver.wait(
|
|
SeleniumWebdriver.until.elementLocated(locator), 5000);
|
|
await el.click();
|
|
}; |