The issue I’m having is that everytime I check this specific table and those specific buttons, their idx changes. Yesterday it was 84 and today is 89. Using wildcards will not work and I don’t know why.
If I don’t use the idx item, It can click on another button outside this specific table. For now I’m manually checking the idx and changing it on the selector.
Is there a way to automatically check those buttons selectors and assigning it to the selector?
Hi. That site is generated by selecting some criteria: date and time and some other options.
When I run those criteria the idx is unique to that criteria only. For example when I run it for 02-09-2021 the idx is 84, but for 02-10-2021 the idx changes to 89. In this case wildcards wouldn’t work.
Find the table and then click the first cell in each row. Make sure you offset the click towards the top of the cell. I don’t think that you’ll be able to simulate the click.
If I don’t simulate the click I have to scroll to that location, otherwise it will click on the bottom left corner (aka Windows Start). I already tried and for some reason it didn’t work. I used On Appear Element, Hover, pgdn, down arrow. But as the website changes for every time I change the criteria, it doesn’t work.
He discovered the Tablerow for that particular table had an constant increment of 4 every row. So he suggested me to create a while loop with a counter that increased by 4 every iteration. That was the solution to this problem.