Created
September 6, 2022 16:27
-
-
Save SarahElson/8ecad10431f521634a3bbcb7b59cccc0 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