猿问

使用 Selenium Python 在网页上找不到元素

我想在网页上找到文本元素(地址在下面)

我对 reddit 帖子标题感兴趣。(屏幕上有提示)


我用Ctrl+ Shift+I和检查单元,并获得:


<h2 class="s1ua9il2-0 hsWiTe" data-redditstyle="true">The problems of a dutchman in China.</h2>

没有 id 和 name。只有标签('h2')和类(“s1ua9il2-0 hsWiTe”),对吗?


我下面的代码不起作用:


import selenium

from selenium import webdriver

from selenium.webdriver.common.keys import Keys


options = webdriver.ChromeOptions()

options.add_argument('headless')

driver = webdriver.Chrome(r"C:\Users\vishniakov\Desktop\python bj\driver\chromedriver.exe",chrome_options=options)

driver.get("https://www.reddit.com/r/funny/comments/9kxrv6/the_problems_of_a_dutchman_in_china/")

print(driver.title)

elem = driver.find_element_by_class_name("s1ua9il2-0 hsWiTe")

#driver.quit()

错误:


selenium.common.exceptions.InvalidSelectorException:消息:无效选择器:不允许复合类名


此外,当我使用复制单击时,通过 css_selector 查找也不起作用:

http://img2.mukewang.com/60e3bfd20001c1fe15480945.jpg

BIG阳
浏览 347回答 2
2回答

慕侠2389804

尝试通过 xpath f12 来完成 - 单击元素并复制 xpath 例如:browser.find_element_by_xpath('//*[@id="modal-manager"]/div/div/div[2]/div/div[3]/div[1]/button')
随时随地看视频慕课网APP

相关分类

Python
我要回答