-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
55 additions
and
41 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Feature: Playwright Home Page | ||
Feature: Visual Testing of Cart Page | ||
|
||
Scenario: Check title | ||
Given I am on Playwright home page | ||
When I click link "Get started" | ||
Then I see in title "Installation" | ||
Scenario: Create a base screenshot | ||
Given I open url "https://flipkart.com" | ||
When I click on cart link | ||
Then Screenshot should get captured | ||
|
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 was deleted.
Oops, something went wrong.
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,16 @@ | ||
import { expect } from '@playwright/test'; | ||
import { createBdd} from 'playwright-bdd'; | ||
|
||
const { Given, When, Then } = createBdd(); | ||
|
||
Given('I open url {string}' , async ({ page }, url) => { | ||
await page.goto(url); | ||
}); | ||
|
||
When('I click on cart link', async ({ page }) => { | ||
await page.getByText('Cart').click(); | ||
}); | ||
|
||
Then('Screenshot should get captured', async ({ page }) => { | ||
await expect(page).toHaveScreenshot('cartpage.png', { fullPage: true }); | ||
}); |
This file was deleted.
Oops, something went wrong.