xpath 在firefox,chrome中正常,在requests中不正常的解决。

经多次测试发现:

lxml中的etree格式化以后,直接使用firefox或chrome提取的xpath检索不到内容。

主要是因为tbody

# 车种xpath
czxx = '/html/body/table/tbody/tr/td/table/tbody/tr[1]/td[7]'
# 车型xpath
cxxx = '/html/body/table/tr/td/table/tr[1]/td[5]'

看上面两个,去掉tbody就可以了。

上面两个xpath是用firefox提取的。

下面是chrome提取的,也是要去掉tbody

 

# 车种xpath
czxx = '//*[@id="report1"]/tr[1]/td[7]'
# 车型xpath
cxxx = '//*[@id="report1"]/tr[1]/td[5]'

转载于:https://www.cnblogs.com/jackadam/p/10112960.html

提取,编辑和轻松评估XPath查询。 XPath的助手很容易提取,编辑,并在任何网页评估XPath查询。 重要提示:安装此扩展后,必须重新加载任何现有的选项卡或重新启动Chrome浏览器扩展工作。 说明: 1.打开一个新的标签,并导航到任何网页。 2.按Ctrl-Shift键-X(或OS X命令移-X),或单击工具栏上的XPath的助手按钮,以打开XPath助手控制台。 3.按住Shift键将鼠标悬停在页面上的元素。查询框将不断更新,以显示鼠标指针下方的元件XPath查询,结果框将显示当前查询的结果。 4.如果需要,请在控制台直接编辑XPath查询。结果框会立即反映更改。 5.重复步骤(2)关闭控制台。 如果控制台在你的方式获得,按住Shift键,然后将鼠标移动到它; 它会移动到页面的相对侧。 一个忠告:当渲染HTML表格,浏览器插入人工<TBODY>标记到DOM,这将在随后通过该扩展提取查询显示出来。 Extract, edit, and evaluate XPath queries with ease. XPath Helper makes it easy to extract, edit, and evaluate XPath queries on any webpage. IMPORTANT: After installing this extension, you must reload any existing tabs or restart Chrome for the extension to work. Instructions: 1. Open a new tab and navigate to any webpage. 2. Hit Ctrl-Shift-X (or Command-Shift-X on OS X), or click the XPath Helper button in the toolbar, to open the XPath Helper console. 3. Hold down Shift as you mouse over elements on the page. The query box will continuously update to show the XPath query for the element below the mouse pointer, and the results box will show the results for the current query. 4. If desired, edit the XPath query directly in the console. The results box will immediately reflect your changes. 5. Repeat step (2) to close the console. If the console gets in your way, hold down Shift and then move your mouse over it; it will move to the opposite side of the page. One word of caution: When rendering HTML tables, Chrome inserts artificial <tbody> tags into the DOM, which will consequently show up in queries extracted by this extension.
在Python爬虫使用Selenium库,主要是因为有些网站的内容是通过JavaScript动态加载的,而单纯基于`requests`和`BeautifulSoup`可能无法直接获取。Selenium是一个模拟浏览器行为的工具,允许你在爬虫控制真实的浏览器实例。以下是基本步骤: 1. **安装Selenium**:先安装selenium库,以及对应的WebDriver,如ChromeDriver(适用于Chrome浏览器),FirefoxDriver(适用于Firefox)等。你可以从官网下载对应版本的驱动。 ```bash pip install selenium ``` 2. **启动WebDriver**:创建一个WebDriver实例,并指定浏览器路径和URL。 ```python from selenium import webdriver driver = webdriver.Chrome('/path/to/chromedriver') driver.get('http://example.com') ``` 3. **网页操作**:可以像操作实际浏览器一样,找到元素并进行操作,例如点击按钮、填写表单等。 ```python element = driver.find_element_by_xpath('//button[@id="myButton"]') element.click() ``` 4. **等待页面加载完成**:有时页面加载是异步的,需要使用`time.sleep()`或`WebDriverWait`等待特定条件满足再继续。 5. **数据抓取**:当页面内容加载完成后,使用`BeautifulSoup`或其他工具解析HTML获取数据。 ```python html_content = driver.page_source soup = BeautifulSoup(html_content, 'html.parser') data = soup.select('.class-or-id') # 选择你需要的元素 ``` 6. **关闭浏览器**:任务完成后,别忘了关闭WebDriver。 ```python driver.quit() ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值