Replace driver.sendKeys with sendKeys function

This commit is contained in:
Jay Lee
2026-04-25 19:55:22 -04:00
committed by GitHub
parent 1cb3223637
commit 5b1d876101

View File

@@ -93,7 +93,7 @@ async function runSSD() {
// Page 1: Tab through the toggles to reach the "Next" button
for (let i = 0; i < 7; i++) {
await driver.sendKeys([Key.Tab]);
sendKeys('{TAB}');
await sleep(200);
}
await driver.sendKeys([Key.Enter]);