我正在尝试使用Selenium和Python从网站下载文件。使用find_elements_by()
后,我得到了2个元素的列表。我试图循环它们以下载这些元素中存在的文件。我只下载了1个文件,即使我打印元素时,我也得到了两个元素。
有人可以提出建议吗?
以下是我的代码:
action = webdriver.ActionChains(driver)
driver.implicitly_wait(10)
x = driver.find_elements_by_partial_link_text('y')
for i in x:
action.move_to_element(i).click(i).perform()
print(i)