get-them-all: remove deprecated waitFor methods & changed the file name for the data file

This commit is contained in:
Marie Malarme 2021-03-04 19:21:41 +00:00 committed by Clément
parent 429a501460
commit 9fb8a8b1ec
1 changed files with 5 additions and 10 deletions

View File

@ -1,4 +1,4 @@
import { people } from './subjects/get-them-all/data.js'
import { people } from './subjects/get-them-all/get-them-all.data.js'
const getIds = predicate =>
people
@ -32,7 +32,7 @@ tests.push(async ({ eq, page }) => {
// get architects
const btnArchitect = await page.$(`#btnArchitect`)
btnArchitect.click()
await page.waitFor(150)
await page.waitForTimeout(150)
const selected = await page.$$eval('a', nodes =>
nodes
@ -51,15 +51,13 @@ tests.push(async ({ eq, page }) => {
)
eq(eliminated, notArchitects)
await page.waitFor(150)
})
tests.push(async ({ page, eq }) => {
// get classical
const btnClassical = await page.$(`#btnClassical`)
btnClassical.click()
await page.waitFor(150)
await page.waitForTimeout(150)
const selected = await page.$$eval('.classical', nodes =>
nodes
@ -78,15 +76,13 @@ tests.push(async ({ page, eq }) => {
)
eq(eliminated, notClassical)
await page.waitFor(150)
})
tests.push(async ({ page, eq }) => {
// check active
const btnActive = await page.$(`#btnActive`)
btnActive.click()
await page.waitFor(150)
await page.waitForTimeout(150)
const selected = await page.$$eval('.classical.active', nodes =>
nodes
@ -104,14 +100,13 @@ tests.push(async ({ page, eq }) => {
)
eq(eliminated, notActive)
await page.waitFor(150)
})
tests.push(async ({ page, eq }) => {
// get bonanno
const btnBonanno = await page.$(`#btnBonanno`)
btnBonanno.click()
await page.waitFor(150)
await page.waitForTimeout(150)
const selected = await page.$eval('#BonannoPisano', node => {
if (node.textContent === 'Bonanno Pisano') return node.id