gpt4 book ai didi

javascript - 通过 id、class、xpath、css 选择器查找元素在使用 selenium 和 beautifulsoup 进行网页抓取时返回 none

转载 作者:太空宇宙 更新时间:2023-11-04 15:43:54 24 4
gpt4 key购买 nike

我不熟悉网络抓取,并使用 beautifulsoup 和 selenium。我正在尝试从以下网页抓取数据:

    https://epl.bibliocommons.com/item/show/2300646980

我正在尝试抓取部分:“包含该职位的员工名单”。特别是,我想获取 <li> 的数量。标签,因为我只需要该员工列表中的项目/链接数。

我已经在“检查”页面提供的 HTML 代码上尝试了以下内容。以下是我试图从中抓取的 HTML 代码块:

<div class="ugc_bandage">
<div class="lists_heading clearfix">
<h3 data-test-id="ugc-lists-heading">
Listed
</h3>
<div class="ugc_add_link">
<div class="dropdown saveToButton clearfix" id="save_to_2300646980_id_7a3ateh0panp1uv0he1v7aqmj9" data-test-id="add-to-list-dropdown-container">
<a href="#" aria-expanded="false" aria-haspopup="true" class=" dropdown-toggle dropdown-toggle hide_trigger_icon" data-test-id="add-to-list-save-button" data-toggle="dropdown" id="save_button_2300646980_id_7a3ateh0panp1uv0he1v7aqmj9" rel="nofollow">
<i aria-hidden="true" class=" icon-plus"></i>
<span aria-hidden="true">Add</span><span class="sr-only" data-js="sr-only-dropdown-toggle" data-text-collapsed="Add, collapsed" data-text-expanded="Add, expanded">Add, collapsed</span><span aria-hidden="true" class="icon-arrow"></span></a>
<ul class="dropdown-menu">
<li>
<a href="/user_lists/new?bib=2300646980&amp;origin=https%3A%2F%2Fepl.bibliocommons.com%2Fitem%2Fload_ugc_content%2F2300646980" class="newList">Create a New List</a>
</li>
<li>
<a href="/lists/add_bib/mine?bib=2300646980_fangirl" data-js="cp-overlay" id="more_lists_id_7a3ateh0panp1uv0he1v7aqmj9">Existing Lists »</a>
</li>

</ul>
</div>

</div>
</div>
<h4 data-test-id="staff-lists-that-include-this-title">Staff Lists that include this Title</h4>
<div data-analytics="{ &quot;SubFeature&quot;: &quot;Lists that include this title&quot; }" class="expand clearfix" id="all_lists_expand" testid="text_listsincluding">
<ul class="further_list">
<li> [LIST ENTRIES START HERE, BUT THERE'S SO MANY, IT WOULD MAKE THIS POST TO LONG.] </li>

  1. 我使用 xpath 抓取了上面的代码,从检查员工列表部分 (id="all_lists_expand") 复制而来:
    element = driver.find_elements_by_xpath('//*[@id="rightBar"]/div[3]/div')
  1. 我尝试通过使用类名进行抓取来抓取该部分:
    element = driver.find_element_by_class_name('expand clearfix')
  1. 我还尝试使用 css 选择器进行抓取:
    element = driver.find_element_by_css_selector('#all_lists_expand')

我还完成了上述代码的其他变体,寻找元素父元素的类、xpaths 等。

以上所有尝试都返回 NONE .我不确定我做错了什么,我应该触发一个事件或使用 Selenium 的东西吗?我什至没有点击列表中列出的任何链接,甚至没有保留链接列表,我只需要计算开始时有多少个链接。

最佳答案

您不需要 Selenium 的费用。您可以对页面发出相同的 GET 请求,然后从返回的 json 中提取 html 并使用 bs4 进行解析并提取链接

import requests
from bs4 import BeautifulSoup as bs

r = requests.get('https://epl.bibliocommons.com/item/load_ugc_content/2300646980').json()
soup = bs(r['html'], 'lxml')
links = [i['href'] for i in soup.select('[data-test-id="staff-lists-that-include-this-title"] + div [href]')]
print(len(links))
print(links)

关于javascript - 通过 id、class、xpath、css 选择器查找元素在使用 selenium 和 beautifulsoup 进行网页抓取时返回 none,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58173399/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com