Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.39 KB

File metadata and controls

53 lines (38 loc) · 1.39 KB

Introduction to Playwright

Hi 👋🏽!

Welcome to the course "Introduction to Playwright" by Renata Andrade for the Test Automation University.

Chapter 3 - Extra Resources

Arrange Act Assert (AAA)

  1. https://medium.com/@pjbgf/title-testing-code-ocd-and-the-aaa-pattern-df453975ab80

Test Info

  1. https://playwright.dev/docs/api/class-testinfo

Test Step

  1. https://playwright.dev/docs/api/class-test#test-step

Page Object Model (POM)

  1. https://playwright.dev/docs/pom

Locators

  1. https://playwright.dev/docs/locators

Actions

  1. https://playwright.dev/docs/input

BDD

  1. Playwright, BDD, Cucumber and my opinion about it

Most used commands

  1. .click()
  2. .fill()
  3. .type()
  4. .check()
  5. .uncheck()
  6. .keyboard.press()

Most used asserts

  1. .toHaveText()
  2. .toBeVisible()
  3. .toEqual()
  4. .toContainText()
  5. .toBeEnabled()
  6. .toBe()
  7. .toBeGreaterThan()
  8. .toHaveCount()
  9. .not

💡 Share on LinkedIn something interesting you've learned! Don't forget to tag me Renata Andrade.

If you have questions, feel free to post them on github.

Happy Testing 🎭!