I can't figure this one out.
I am working on this site and I have used selenium in Python to click on the first element under the class name "yellow showPopupUnder" (the main part of the screen where there are 20 yellow rows of information about houses).
After I get Selenium to click on that row it opens up and shows more information. I am interested in the part where there are 'checked' and 'unchecked' boxes. Those checked boxes are in a div like so:
<div class="v_checked">
And the unchecked boxes are in a div like so:
<div class="v_unchecked">
I have tried reaching them in a few ways:
driver.find_element_by_class_name('v_checked')
driver.find_element_by_css_selector(".v_checked")
driver.find_element_by_xpath("//div[@class='v_checked']")
I have also tried to use the absolute xpath. All of these don't work and I get a "NoSuchElementException: no such element: Unable to locate element"
Does anybody know how to retrieve the data from those boxes?
Thank you!