selenium +xpath

Posted hello world

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了selenium +xpath相关的知识,希望对你有一定的参考价值。

#!encoding=utf-8
from lxml import etree
from selenium import webdriver

from selenium.webdriver.chrome.options import  Options
options = Options()
options.add_argument(\'--headless\')


browser = webdriver.Chrome(options=options)

browser.get("https://www.cnblogs.com/brady-wang/")

content = browser.page_source

html = etree.HTML(content)
title = html.xpath(\'//*[@id="Header1_HeaderTitle"]/text()\')
print(title)
browser.close()

  

以上是关于selenium +xpath的主要内容,如果未能解决你的问题,请参考以下文章

selenium爬取新闻做成词云(以及selenium的xpath查找方法)

selenium:Xpath定位详解

Python selenium无法通过ID或xpath填写输入框。

selenium +xpath

[Training Video - 1] [Selenium Basics] [Xpath Selenium]

selenium.common.exceptions.InvalidSelectorException:消息:给定的 xpath 表达式通过 Selenium 在 scrollIntoView 中使用