Hi I would like to scrap what is selected in the following image:
I know i could use the following code to get the text:
cell = driver.find_elements_by_xpath(".//*[@id='ip_selection1233880116name']") print cell.text
But my problem is that ip_selection1233880116name should be dynamic, given that it changes every time as you can see from the image.
How could I do it?
Thanks a lot for your help!!!!