Python noobie here.
What I have is a data harvesting problem. I\'m on this website, and when I inspect the element that I want with Firebug, it shows the source cont
Try to use the following code and see if it works.
import selenium.webdriver.support.ui element = WebDriverWait(driver, 10).until( lambda driver : driver.find_element_by_xpath("fImageMap > area:nth-child(2)") )