I have a problem when using "Delete current element".
When it happen, it delete another element, not current (Maybe it delete both of thems).
I set "Max number of sumultaneous use" 10000 (It's needed for my bussiness).
Is there any solution? Thanks.
Maybe you are using "not reuse" option when
dealing with resource, and that might be problem
for deleting current line from resource - instead
it is deleting next resource line.
There are too many duplicate elements here but I only want to click on 3-5 buttons. How do I build the script
please help me
You need to change the element selector. Open the page code and find the text in the required element that differs from other elements, you can use this text in the >MATCH> selector. You can also specify the number of a specific selector by using the prefix >AT> Manual on selectors
I was able to do what I want by adding "Execute javascript on element" to loop and then self.parentElement.parentElement.querySelector('span').textContent
But I am still interested if something similar can be done with XPATH or CSS
edit: XPATH syntax is something like this
[[FOR_EACH_CSS]] >AT>[[CYCLE_INDEX]] >XPATH> ../following-sibling::td[1]
now last thing I am missing is how to do it with CSS