selenium 定位标签
Posted zjj999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium 定位标签相关的知识,希望对你有一定的参考价值。
from selenium import webdriver
from lxml import etree
import time
a = webdriver.Chrome(executable_path=r‘D:python学习其他chromedriver.exe‘)
url = ‘https://jd.com‘
a.get(url) # 用户发起请求
search_input = a.find_element_by_id(‘key‘) # 定位到input框
search_input.send_keys(‘电脑‘) # 输入内容
btn = a.find_element_by_xpath(‘//*[@id="search"]/div/div[2]/button‘) # 定位到按钮
btn.click() # 点击按钮
page_text = a.page_source # 下载网页源码
a.quit()
以上是关于selenium 定位标签的主要内容,如果未能解决你的问题,请参考以下文章