what is going on

This commit is contained in:
Frank Delaguila
2022-10-04 20:46:30 -06:00
commit 001e362d38
14 changed files with 8399 additions and 0 deletions

12
scraper.test.js Normal file
View File

@@ -0,0 +1,12 @@
require('expect-puppeteer');
describe( 'Google', () => {
beforeAll( async () => {
await page.goto('https://www.sports-reference.com/cfb/schools/utah/2022-schedule.html', { waitUntil: 'domcontentloaded' });
} );
it( 'should open a new page, and match title.', async () => {
const title = await page.title();
expect(title).toMatch("2022 Utah Utes Schedule and Results | College Football at Sports-Reference.com");
} );
} );