I'm new to Selenium and VBA. What i want to do is automate selection of a certain TEXT in a CSS. Selenium brings me this:
css=.x-grid3-row:nth-child(42) .x-grid3-col:nth-child(4) > .x-grid3-cell-inner
Everyting would be fine, except the TEXT I want to select sometimes move to different grid3-row:nth-child
What I want to achieve is to find in which x-grid3-row:nth-child
the desired TEXT is so I could click it with a VBA bot.
Thank you for your help.