Combine Filters with Standard CSS Logic
Last updated
Last updated
You can combine ZeroWork's text= method with the standard selector logic by using >> as a filter.
As an imaginary example, you can define a selector like this:
div > div[role='main'] > div div >> text="Like"
>> can only be added at the end of the selector. ā This will work: div > div[role='main'] > div div >> text="Like" ā This will not work: div > div[role='main'] > div >> text="Like" > div