請問一下各位大大, 最近在使用selenium 定位 ::before, 但一直取不到元素
我的版本 :
python 3.6.4
selenium 3.8.1
chromedriver 2.34
以下是我的 html
<div id="wx" class="container games">
::before
<div class="fancybox-loading">
<div class="loader">
<div class="loading_inner one"></div>
<div class="loading_inner two"></div>
<div class="loading_inner three"></div>
</div>
<div id="loadingText" class="loding_Text">加载中...</div>
</div>
::after
</div>
python :
driver.find_element_by_xpath("//*[@id='loadingText']")
會出下以下錯誤:
NoSuchElementException: Message: no such element:
Unable to locate element: {"method":"xpath","selector":
"//*[@id='loadingText']"}
請問是我定位錯誤嗎? 不支援::before嗎?