locked
Edge WebDriver Issue: Unable to click one step above RRS feed

  • Question

  • Hi,

    I have a navigation tree in the application. And i'm using selenium with c# to test the application in Edge browser, IE11 and Chrome.

    If i click on the nav tree element say Home(hyperlink), it takes me to a page called Home. However if I click on the div encapsulating the Home element, it expands the navigation tree. So my requirement is to click on the div just outside the hyperlink in the navigation tree element. 

    Here is code snippet to do the same

    var elements = TreeView.FindElement(By.LinkText("Home"));
    int count = element.FindElements(By.XPath("..")).Count;         - (gives count as 1 in all three browsers)
    element.FindElement(By.XPath("..")).Click();     -(click happens in IE and Chrome, however fails in Edge)

    Exception says element not visible. 

    Please suggest me a possible solution. 

    Also could you suggest why this could be failing in Edge and passing in the other two browsers?

    Could it be possible that in Chome and IE, it is clicking on the visible part of the div encapsulating the hyperlink. Whereas in Edge, it is clicking on the center of the div?

    Thanks & Regards

    Sandeep P Raju

    • Moved by Oscar_Wu Monday, December 5, 2016 8:42 AM not support
    • Moved by Naomi N Monday, December 5, 2016 10:59 AM Better forum was suggested
    Wednesday, November 30, 2016 2:08 PM

Answers

  • Hi Sandeep P Raju,

    According to your description, your issue is related to selenium technics, I suggest you had better post this issue to the selenium forum for a professional answer.

    http://seleniumforum.forumotion.net/

    Sincerely,

    Oscar


    MSDN Community Support
    Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.

    • Proposed as answer by Oscar_Wu Friday, December 2, 2016 7:30 AM
    • Marked as answer by Dave PatrickMVP Saturday, December 10, 2016 8:40 PM
    Friday, December 2, 2016 2:02 AM