from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
driver = webdriver.Chrome()
target = "https://pan.baidu.com/"
driver.get(target)
driver.find_element_by_xpath('//div[@class="account-title"]/a').click()
driver.find_element_by_xpath('//input[@id="TANGRAM__PSP_4__userName"]').send_keys('name')
driver.find_element_by_xpath('//input[@id="TANGRAM__PSP_4__password"]').send_keys('passwd')
driver.find_element_by_xpath('//input[@id="TANGRAM__PSP_4__submit"]').click()
path = driver.find_element_by_xpath('//a[@title="test"]')
ActionChains(driver).move_to_element(path).perform()
ActionChains(driver).context_click(path).perform()
上面的代码执行后,呈现下面的状态
继续往下走,
driver.find_element_by_xpath('//*[@class="context-menu"]/ul/li[21]').click()
胜利在望了,
如何模拟那个确定?
driver.find_element_by_xpath('/html/body/div[10]/div[3]/a[1]').click()
不可以