Updated to use async and dynamically load category pages.

This commit is contained in:
Ian Davies 2019-11-27 16:01:30 +00:00
parent a3577705e3
commit b7ab87b652

View File

@ -1,19 +1,46 @@
const PercyScript = require('@percy/script')
async function openLink(target) {
return target.click();
}
PercyScript.run(async (page, percySnapshot) => {
const defaultProcessing = async (name, id, location) => {
await page.goto(location)
await page.waitFor(`#${id}`)
await percySnapshot(name)
console.log(`Snapshot complete for ${name}`)
}
const specialProcessing = {
'All': async (_) => {},
'Modals': async (name, id, location) => {
await defaultProcessing(name, id, location)
await page.click('#launch-info-modal')
await page.waitFor('[role="dialog"]')
await percySnapshot('Full Info Modal')
await page.click('[aria-label="Close modal"]')
await page.click('#launch-warning-modal')
await page.waitFor('[role="dialog"]')
await percySnapshot('Full Warning Modal')
await page.click('[aria-label="Close modal"]')
}
}
await page.goto('http://localhost:8000')
await page.waitFor('#categories').then(x => {
console.log(x)
const categories = Array.from(document.querySelectorAll('#categories a'))
console.log(categories)
await page.waitFor('#categories').then(category => {
return category.$$('a').then(links => {
return links.reduce((acc, link) => {
return acc.then(_ => {
return link.evaluate(node => [node.innerText, node.innerText.toLowerCase().replace(/ /g, "-"), node.href]).then(([name, id, location]) => {
let handler = specialProcessing[name] || defaultProcessing
return handler(name, id, location)
})
}
)
}, Promise.resolve( ))
})
})
const homepage = await page.evaluate (() => {
let categories = Array.from(document.querySelectorAll('#categories a'))
console.log(categories)
console.log('test')
})
/*
await page.goto('http://localhost:8000/#category/Animations')
await page.waitFor('#animations')
@ -70,4 +97,6 @@ PercyScript.run(async (page, percySnapshot) => {
await page.goto('http://localhost:8000/#category/Messaging')
await page.waitFor('#alerts-and-messages')
await percySnapshot('Messaging')
})
*/
}, {headless: false})