Replies: 3 comments 5 replies
-
As always
|
Beta Was this translation helpful? Give feedback.
3 replies
-
Figure this out? |
Beta Was this translation helpful? Give feedback.
0 replies
-
XPath2.0-3.1 is supported since 0.45.8. Try new version. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
What I'm trying to do is this: Using the CSS filter
p.title
I get a list of thread titles in a forum. Now I want to be notified when there is a new thread with a title that contains the keyword "A".Here's what I tried:
/^(?!.*A).*$/
to the "Ignore text" list. Result: I still get notifications for every new thread, just most of the time they are empty://p[contains(@class, 'title') and matches(., '.*A.*')]
. Result: Doesn't work because XPath 2.0 isn't supported.I feel like this should be very simple and I'm just not understanding something clearly. Would appreciate any explanations. Thanks!
EDIT:
Beta Was this translation helpful? Give feedback.
All reactions