Hi Marina and thanks for your answer,
The site is currently being developed, so I've made two pastebins: One with the dropdown menu closed and one where it's open.
I want to select an arbitrary table row inside of the dropdown menu.
Pastebin when the dropdown is open: https://pastebin.com/FPir2igB - the relevant table to select from starts at line 709:
I know it's not easy to get an overview of all this code, but I'm not sure how to show it to you otherwise..
If it's a help, here's a Pastebin of the HTML when the dropdown is closed: https://pastebin.com/2a065BZK (line 973).
I've tried a lot of different selectors to get hold on an arbitratry table row. E.g. Selector('#sagsvaelgertable').find('tr').nth(0)
and Selector('#sagsvaelgertable').find('tbody').nth(0).child(0)
and just simply Selector('tr').nth(0)
. None selects an elements and I'm 100% sure that the dropdown has been clicked.
Any suggestions on how to proceed?
EDIT: I don't think it is possible to select anything after the dropdown has been toggled.