Forked from SarahElson/testScenarios parallelLoginBuyRun.py
Created
September 28, 2022 15:45
-
-
Save rahulmr/c8d702391a2fe5745652884970d226f1 to your computer and use it in GitHub Desktop.
Playwright Python Tutorial
This file contains hidden or 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
| import sys | |
| sys.path.append(sys.path[0] + "/..") | |
| from testScripts.parallelLoginBuyScript import LoginAndBuy | |
| from playwright.sync_api import sync_playwright | |
| with sync_playwright() as playwright: | |
| try: | |
| playwright = LoginAndBuy(playwright) | |
| playwright.launchWeb() | |
| playwright.fillEmail("[email protected]") | |
| playwright.fillPassword("mypassword") | |
| playwright.clickLogin() | |
| playwright.fillSearchBox("Nikon") | |
| playwright.clickSearchButton() | |
| playwright.clickProduct() | |
| playwright.clickAddToCart() | |
| playwright.clickCheckOutModal() | |
| playwright.hoverMenuBox() | |
| playwright.clickLogout() | |
| playwright.getSuccessStatus() | |
| except: | |
| playwright.getFailed() | |
| playwright.closeBrowser() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment