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
  • Why are you using contains? I think the correct xpath is //div[@class='Label_Menu'] – John Gordon Commented 2 days ago
  • It's still showing unable to locate the element – Sky Commented 2 days ago
  • Edit your question and post the full error message as text, properly formatted. Have you tried adding a wait? Have you looked to see if the element is in an IFRAME or shadow-root? What else have you tried? Edit your question and add a summary of the answers to all these questions. – JeffC Commented 2 days ago
  • yes ,I have tried explicit wait. The element is not in IFRAME. All these solutions are on ChatGpt too. But still none can solve my problem. That's why I am here. – Sky Commented 2 days ago
Add a comment  | 

1 Answer 1

Reset to default -1

Change 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