Replies: 1 comment
-
I believe you're on the right track. Instead of trying to select them all and then loop one by one, I’d rather loop from 1 to 1000 (a really big number) and check if the element exists on the page. If it doesn’t, just skip it. The check should be fairly quick. |
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
-
Hi all,
It might be a dumb and very newbie question, but I have the following CSS selectors on a website, and want to loop them all:
.css-5ef180 > .list-reset:nth-child(1) > .border
.css-5ef180 > .list-reset:nth-child(2) > .border
The idea would be to say n should variate from 1 to xx in order to select them all.
I have set up a loop data from 1 to 10, followed by a click-element:
.css-5ef180 > .list-reset:nth-child({{loopData.ETns_g.$index}}) > .border
How should I do to make it work?
Thanks!
Best
PS: in case of any need, here is the website I want to automate things: sortlist.fr
And this is the kind of data I want to click-on. (make sure you're in list view and not cards view to have the right css selector)
Beta Was this translation helpful? Give feedback.
All reactions