Page Assertions

Learn how to assert a page using Selenium.

We'll cover the following...

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
...

...