Check for presence/existence of elements #2194
denilsonsa
started this conversation in
Ideas
Replies: 2 comments 1 reply
-
Add "source:" to the beginning of your URL to fetch, it will pull the source code instead of the user content |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hmm, I can use Run JavaScript before change detection. Then I can add: Array.from(document.querySelectorAll(".roundel__img")).map(el => el.after(document.createTextNode(el.dataset.src))); That seems to work. I tried Browser Steps, but it didn't work because it didn't send the custom HTTP header (with a custom User Agent) I had set. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was watching a certain store page. They have sometimes have discounts when buying multiple products. Those discounts are visible by an image being placed on top of the product image. However, there is no visible/extractable text.
For non-discounted products it has this markup:
For discounted products:
Since there is no visible text change, there will be no difference. Is there any way to detect this kind of change? If not, can it be implemented? I understand it's tricky to implement this in a user-intuitive way.
Beta Was this translation helpful? Give feedback.
All reactions