Xpath定位元素方式
Posted nifanlove
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Xpath定位元素方式相关的知识,希望对你有一定的参考价值。
from selenium import webdriver
driver = webdriver.Firefox()
driver.get(url)
driver.find_element_by_xpath()
鼠标事件
from selenium.webdriver.common.action_chains import ActionChains
ActionChains(driver) //用于生成模拟用户行为
perform() //执行存储行为
键盘事件
以上是关于Xpath定位元素方式的主要内容,如果未能解决你的问题,请参考以下文章