一个搜索网站https://std.samr.gov.cn/,一个excel表格,根据表格(共1列,每行1格),依次在网站搜索,结果唯一,点击链接,在链接下载文件
时间: 2024-03-12 07:47:41 浏览: 119
在几秒钟内自动完成Excel下载。只需一步一步地对excel文件的所有行进行繁琐、重复的操作,并在工作完成后报告。它可以.zip
好的,这个任务可以通过Python编程语言来实现,具体的思路如下:
1. 读取Excel表格中的数据,保存到一个列表中。
2. 使用Selenium模块打开Chrome浏览器,并访问给定的网址。
3. 在搜索框中输入列表中的每个关键词,并点击搜索按钮。
4. 找到搜索结果中唯一的元素,并点击链接。
5. 等待页面加载完成后,找到下载链接并点击下载。
下面是一个Python程序,可以实现上述任务:
```python
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
# 读取Excel表格中的数据
data = []
with open('data.xlsx', 'r') as f:
for line in f.readlines():
data.append(line.strip())
# 设置Chrome浏览器的路径和驱动程序路径
chrome_path = 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe'
driver_path = 'chromedriver.exe'
# 启动Chrome浏览器
options = webdriver.ChromeOptions()
options.binary_location = chrome_path
driver = webdriver.Chrome(executable_path=driver_path, options=options)
# 访问搜索网站
driver.get('https://std.samr.gov.cn/')
# 依次搜索并下载文件
for keyword in data:
# 输入关键词并搜索
search_box = driver.find_element(By.ID, 'query_text')
search_box.clear()
search_box.send_keys(keyword)
search_box.send_keys(Keys.RETURN)
# 等待搜索结果加载完成
wait = WebDriverWait(driver, 10)
element = wait.until(EC.presence_of_element_located((By.CLASS_NAME, 'search_result')))
# 找到唯一的搜索结果并点击链接
result_links = driver.find_elements(By.CLASS_NAME, 'search_result_title')
if len(result_links) == 1:
result_links[0].click()
# 等待页面加载完成
wait.until(EC.presence_of_element_located((By.XPATH, '//div[@class="page-content"]/div[1]')))
# 找到下载链接并点击下载
download_link = driver.find_element(By.XPATH, '//a[text()="下载"]')
download_link.click()
# 返回搜索结果页面
driver.back()
# 关闭浏览器
driver.quit()
```
在这个程序中,我们使用了Selenium模块来自动化浏览器操作。需要注意的是,程序中的Chrome浏览器和驱动程序的路径需要根据实际情况进行修改。
阅读全文