I've a python script (with selenium) where I can click a button:
button1 = driver.find_element_by_xpath("//*[@id='test1']")
button1.click()
When I run the script, it opens chrome + my app and it clicks on the button. After clicking on the button an image appears on the place of the button.
I can manually inspect this image:
<img style="" src="//files.qualifio.com/library/xxx.png" class="card_1">
Is there a way how I can get this src
in Python after clicking my button1
?