browser = webdriver.Chrome()
browser.browser.find_elements_by_xpath("//div[@class='a image']/img")
the html look like this
<div class="a image"><imgsrc="https://cloudfront.net/"></div>
how to get the src text ?
browser = webdriver.Chrome()
browser.browser.find_elements_by_xpath("//div[@class='a image']/img")
the html look like this
<div class="a image"><imgsrc="https://cloudfront.net/"></div>
how to get the src text ?