I am using GreaseKit (so JavaScript)
Step #1 Look for string & Step #2 Click button
When this HTML page loads, if either of the following :
Only 3 Left
orOnly 2 Left
orOnly 1 Left
appears in a table cell AND a button with class="PrmryBtnMed"
is present in that very same cell, then click the button using el.click();
Can we just look inside the <tr>
tags?
If not, an alternative approach might be to just click the first button that appears immediately underneath, or after the desired string.
update: thanks to @Bergi, it seems we can just use:
var LookInCells = document.getElementsByTagName('tr');
About that button: which attribute to look for?
the bit of html looks like: <a href="/gp/wine/taste-next-123/" class="PrmryBtnMed" id = "product-B00123456"><span>Send me this item</span></a>
So, thinking about attributes of the button
These will always be the same:
class="PrmryBtnMed"
<span>Send me this item</span></a>
These will always vary, so might as well ignore:
- where the link points to (e.g.
a href="/gp/wine/taste-next/"
) - the id will always be 'id = "product-B00123456"'
I'm having a go at this based on the kind guidance of @Bergi!