Udemy Playwright: Web Automation Testing From Zero to Hero: Difference between revisions

Jump to navigation Jump to search
m
Line 100: Line 100:
:: try to avoid using the after... hooks, better to do it in the before... hooks
:: try to avoid using the after... hooks, better to do it in the before... hooks


== Section 4 Interaction with Web Elements ==
== Section 4: Interaction with Web Elements ==
=== Understanding DOM and Terminology ===
==== Review HTML terms ====
<nowiki>
<parent>
  <html_tag_name html-attribute="a value" class="class1 class2" id="unique">
      <child>
        ... html text value
      </child>
  </html_tag_name>
  <sibling></sibling>
</parent></nowiki>

Navigation menu