Page Assertions

Learn how to assert a page using Selenium.

Page Assertions

Without assertions (often known as checks), a test script is incomplete. Common assertions for testing web applications are:

  • Page title (equals)
  • Page text (contains or does not
...

...

Assert page title

We can ...