我正在尝试使用click()单击此链接:
<a id="export-button" class="pull-right" @click="exportFile('/en/my-investments/list.xlsx')">
<i class="fa fa-file-excel-o"></i> Download Selected List
</a>
但是它表示该元素不可点击...知道吗?
答案 0 :(得分:0)
您可以使用操作类单击您的元素,
from selenium.webdriver import ActionChains
actions = ActionChains(driver)
actions.move_to_element(driver.find_element_by_xpath("//a[@id='export-button']")).click().perform()