-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Backstop page interaction support (#66)
- Loading branch information
Showing
3 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
module.exports = async (page, scenario) => { | ||
const hoverSelector = scenario.hoverSelectors || scenario.hoverSelector; | ||
const clickSelector = scenario.clickSelectors || scenario.clickSelector; | ||
const keyPressSelector = | ||
scenario.keyPressSelectors || scenario.keyPressSelector; | ||
const scrollToSelector = scenario.scrollToSelector; | ||
const postInteractionWait = scenario.postInteractionWait; // selector [str] | ms [int] | ||
|
||
if (keyPressSelector) { | ||
for (const keyPressSelectorItem of [].concat(keyPressSelector)) { | ||
await page.waitForSelector(keyPressSelectorItem.selector); | ||
await page.type( | ||
keyPressSelectorItem.selector, | ||
keyPressSelectorItem.keyPress | ||
); | ||
} | ||
} | ||
|
||
if (hoverSelector) { | ||
for (const hoverSelectorIndex of [].concat(hoverSelector)) { | ||
await page.waitForSelector(hoverSelectorIndex); | ||
await page.hover(hoverSelectorIndex); | ||
} | ||
} | ||
|
||
if (clickSelector) { | ||
for (const clickSelectorIndex of [].concat(clickSelector)) { | ||
await page.waitForSelector(clickSelectorIndex); | ||
await page.click(clickSelectorIndex); | ||
} | ||
} | ||
|
||
if (postInteractionWait) { | ||
if (typeof postInteractionWait === 'number') { | ||
await page.waitForTimeout(postInteractionWait); | ||
} else { | ||
await page.waitForSelector(postInteractionWait); | ||
} | ||
} | ||
|
||
if (scrollToSelector) { | ||
await page.waitForSelector(scrollToSelector); | ||
await page.evaluate((scrollToSelector) => { | ||
document.querySelector(scrollToSelector).scrollIntoView(); | ||
}, scrollToSelector); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = async (page, scenario, vp) => { | ||
await require(__dirname + "/helpers")(page, scenario); | ||
}; |