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.
3
+
The guidelines below will help you to write high quality selectors.
4
4
5
-
### Selectors SHOULD be written in CSS instead of Xpath whenever possible.
5
+
### Selectors SHOULD be written in CSS instead of Xpath whenever possible
6
6
7
-
### Xpath selectors SHOULD NOT use `@attribute="foo"`. Instead you SHOULD use `contains(@attribute, "foo")` where `@attribute` is any valid attribute such as `@text` or `@class`.
7
+
### Xpath selectors SHOULD NOT use `@attribute="foo"`.
8
8
9
-
### CSS and Xpath selectors SHOULD be implemented in their most simple form.
9
+
Instead you SHOULD use `contains(@attribute, "foo")` where `@attribute` is any valid attribute such as `@text` or `@class`.
10
+
11
+
### CSS and Xpath selectors SHOULD be implemented in their most simple form
0 commit comments