Merge pull request #236 from peace2000/patch-1

Update SyntaxMeaningsThatAreActuallyHumanReadable.md
This commit is contained in:
Imre Kristoffer Eilertsen
2021-08-01 03:22:39 +02:00
committed by GitHub
@@ -17,7 +17,7 @@
* `[href$="text"]`: Finds page elements whose value *ends* with the text.
* `[href*="text"]`: Finds page elements whose value contains the text anywhere within it.
* `[href~="text"]`: Finds page elements whose value contains the word (with spaces around it) anywhere within it.
* `[href|="text"]`: Same as `[href="text"]`, but can also select text that is then followed by a dash.
* `[href|="text"]`: Same as `[href="text"]`, but can also select text that is then followed by a hyphen `-`.
* `:not(.element)`: Finds page elements that doesn't contain a specified element or text string.
* `:-abp-contains(text)`: Finds page elements that contains such text within it.
* `:-abp-has(.element)`: Finds page elements that contains such an element within it.