selenium'X'标记在python3上没有关闭

时间:2016-09-26 08:28:11

标签: python-3.x selenium

我正在尝试关闭网站上的图片文件。

好像使用javascript和结果显示

流程已完成退出代码0

但它没有关闭它。我的代码出了什么问题? 我的代码如下。

driver.execute_script("arguments[0].click()", driver.find_element_by_id('email_result'))

enter image description here

1 个答案:

答案 0 :(得分:2)

实际上你找到了close icon image button的父元素,而这就是你遇到麻烦的原因。您应该尝试使用find_element_by_css_selector找到close icon,如下所示: -

driver.find_element_by_css_selector('#email_result > div.closeIcon').click()