首先先用python打开网站
import os
from selenium import webdriver
from selenium.webdriver。chrom。service import Service
from selenium.webdriver.common.by import By
from sleenium.webdriver.common.action_chains import ActionChains
chrome_path='webdriver/chromedriver.exe'
driver_service=Service(chrome_path)
driver=webdriver.Chrome(service=driver_service)
driver.get('https://www.baidu.com')
#鼠标事件: context_click() 右击 double——click() 双击 drag_and_drop() 拖动 move_to_element() 鼠标移动到一个元素上 click——and_hold 按下鼠标左键在一个元素上 #举例 web_element=driver.find_element(By.XPATH,"//a[@name='wd']") mouse=ActionChains(driver) mouse.move_to_element(web_element).perform #写好之后最好perform执行



