admin管理员组文章数量:1347662
The source code of the element that has to be found by find_element
is:
<div class="LogoutMenu" style="position: fixed;bottom: 0px;">
<img src="/assets/logoutImg.svg" alt="Menu Icon" style="padding: 10px;">
<div class="Label_Menu" style="Width: 5vw;">Logout </div> == $0
</div>
The XPATH that I have generated is:
driver.find_element(By.XPATH, "//div[contains(@class= 'Label_Menu')]").click()
But still I am unable to fetch the element. I had tried Parent-Child Transverse but its also showing the same error.
I also have tried CSS_SELECTOR. But still there is error 'seleniummon.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"div.Label_Menu"}'
The source code of the element that has to be found by find_element
is:
<div class="LogoutMenu" style="position: fixed;bottom: 0px;">
<img src="/assets/logoutImg.svg" alt="Menu Icon" style="padding: 10px;">
<div class="Label_Menu" style="Width: 5vw;">Logout </div> == $0
</div>
The XPATH that I have generated is:
driver.find_element(By.XPATH, "//div[contains(@class= 'Label_Menu')]").click()
But still I am unable to fetch the element. I had tried Parent-Child Transverse but its also showing the same error.
I also have tried CSS_SELECTOR. But still there is error 'seleniummon.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"div.Label_Menu"}'
Share Improve this question edited 2 days ago Sky asked 2 days ago SkySky 13 bronze badges New contributor Sky is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 4 |1 Answer
Reset to default -1Change the XPath expression to:
//div[contains(@class,'Label_Menu')]
Issue in the XPath expression which you constructed was it's syntax. For contains()
function, =
sign should not be used. Instead ,
should be used.
Example Syntax - //tag[contains(@attribute,'value')]
本文标签: Getting quotUnable to locate elementquot Selenium 4300 PythonStack Overflow
版权声明:本文标题:Getting "Unable to locate element" Selenium 4.30.0 Python - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743837182a2547615.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
contains
? I think the correct xpath is//div[@class='Label_Menu']
– John Gordon Commented 2 days ago