Verify Text Is Found In the Page
Use this verification step to check if a specific text string appears anywhere on the page during test execution. It helps validate visible messages, headings, form labels, or any other expected content.
When To Use
Use Verify Text Is Found on the Page in scenarios like:
- Confirming a welcome message appears after successful login
- Validating that a confirmation message is shown after submitting a form
- Checking if a specific page title or label is visible
- Verifying the presence of a maintenance banner or notice
Steps to Add 'Verify Text Is Found In the Page'
While recording, click the Add a Verification Step icon.
Select Verify text is found in the page.

A text selection box appears. Click on the text directly in the browser, or type the expected text manually.
Optional
Configure the Advanced Settings to fine-tune the text matching behavior.
Click Save to add the verification step.
The verification step is added to the scenario and appears in the Recorder as a new step.
You can view this step in the Features page as part of the recorded scenario.
After running the scenario, you can view the result of this verification step on the Reports page.
Advanced Settings
Refine how the text is matched on the page with these options.
Note
To use the advanced options, first enable Make it a regular expression. You can then apply one or more of the built-in patterns, or write your own regex for more control.
Setting | What it does | Example |
---|---|---|
Make it a regular expression | Enables regex matching by adding / at both ends. | Searching /Accessory.*Store/ will match AccessoryStore, Accessory Store, or Accessory Mega Store. |
Make case insensitive | Ignores letter case differences during matching. | accessorystore matches AccessoryStore, ACCESSORYSTORE, or AccessoryStore. |
Ignore digits | Ignores any numbers in the text during matching. | Model 123 matches Model, Model 456, or Model ABC. |
Look for exact match | Matches the exact string only, with no extra characters. | AccessoryStore matches only AccessoryStore, not AccessoryStore Sale or The AccessoryStore. |