I trying to parse web page that has captcha. Captcha is generated by PHP:
<img src="/captcha.php" border="0" align="absmiddle">
What i do:
self.driver = webdriver.Chrome()
img = self.driver.find_element_by_xpath('//table/tbody/tr/td/img')
scr = img.get_attribute('src')
but it contains captcha.php and i expecting to see base64.
Is there any way to get that image return by php script ?