Skip to content

Instantly share code, notes, and snippets.

@corradin
Created March 4, 2022 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corradin/7b4e73d224157773135057b0abf58b81 to your computer and use it in GitHub Desktop.
Save corradin/7b4e73d224157773135057b0abf58b81 to your computer and use it in GitHub Desktop.
test('should contain homepage title', async ({ page }) => {
await page.goto('https://www.meetup.com');
const title = await page.title();
expect(title).toBe('Meetup - We are what we do');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment