Refactor key sending to use sendKeys function

This commit is contained in:
Jay Lee
2026-04-25 19:42:13 -04:00
committed by GitHub
parent b8f894fddb
commit 0330e315d2

View File

@@ -104,10 +104,10 @@ async function runSSD() {
// Page 2: Tab through the remaining toggles to reach the "Accept" button // Page 2: Tab through the remaining toggles to reach the "Accept" button
for (let i = 0; i < 7; i++) { for (let i = 0; i < 7; i++) {
await driver.sendKeys([Key.Tab]); sendKeys('{TAB}');
await sleep(200); await sleep(200);
} }
await driver.sendKeys([Key.Enter]); a sendKeys('{ENTER}');
console.log('Clicked Accept'); console.log('Clicked Accept');
await sleep(3000); await sleep(3000);