You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tips and tricks below will help you to write high quality selectors.
4
+
5
+
### Selectors SHOULD be written in CSS instead of Xpath whenever possible.
6
+
7
+
### Xpath selectors SHOULD NOT use `@attribute="foo"` instead you SHOULD use `contains(@attribute, "foo")` where `@attribute` is any attribute such as `@text` or `@class` for example.
8
+
9
+
### CSS and Xpath selectors SHOULD be implemented in their most simple form.
0 commit comments