-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
QE-9149 remove hardcoded matcher (#339)
Issue: The radio button is labelled by a **‘text sibling’**. The label contains leading and trailing spaces. In ‘fuzzy.js’ matching rules script, the matcher is hardcoded to **‘has_text’** for finding elements which are labelled by a ‘text sibling’. Since the space is not trimmed, it does not match the text and unable to find the element. Solution: Either trim the leading and trailing spaces in the ‘has_text’ custom matcher Or Remove the hard coded matcher, so it can use the **‘contains’** matcher to match the text and find the element. Jira Link: https://dominodatalab.atlassian.net/browse/QE-9149 Results: Loom video of successful run: https://www.loom.com/share/5323c7a81147415f8c05b1f13098ad51?sid=363a7af2-43e7-4fc5-b194-037e4e32c252 ![image](https://github.com/cerebrotech/cucu/assets/91882851/336cd53b-b537-4c2f-b912-755674a8eb4b)
- Loading branch information
Showing
4 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "cucu" | ||
version = "0.142.0" | ||
version = "0.143.0" | ||
license = "MIT" | ||
description = "Easy BDD web testing" | ||
authors = ["Domino Data Lab <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters