I am trying to extract full HTML table with hundreds of pages. If I enter the exact number of pages in the "the first.." it works fine... but when I use all available, it will download the tables but then it will get stuck on the last page without moving to the next steps. The problem is that in the last page, the next button is still there although disabled. I want to find a way to include a something in the selector stating enabled="true" so once it gets to the last page it can move on.
This is what the button looks like in the website:

and this is how the CSS Selector looks like in power automate:
iframe[id="mctnt"] iframe[id="oRightPaneContent"] button[id="toolbar_NEXT_ACTIONLabel" enable="true"] > img, html > body > div:eq(0) > div > div > div > div > div:eq(1) > div > div > div:eq(1) > div:eq(3) > div > div > div:eq(1) > iframe > html > body > div:eq(2) > div > div:eq(2) > iframe > html > body > form:eq(0) > div:eq(2) > div:eq(1) > fieldset > span > table > tbody > tr > td:eq(3) > table > tbody > tr > td > button > img
I have tried using button[enabled="true"] or add enabled=true within button[id="toolbar..."] using a comma. None of those have helped. Any ideas? Thanks.