I was trying to get id from html in order to pass it like xpath, but this id is not the same like in chrome
absolute path is not suitable as it will always be different. Help please :(
As far as I can see there is only one <table>
element with the following xpath and that specific element happens to be the one holding all the email elements:
//table[@role='grid']
So to click the first element I would use the following xpath:
//table[@role='grid']//tr[1]
There might be an issue depending on where exactly in the row the click will happen, but I doubt that it would fail.