Can reference to element with Selenium command despite element being present

I am being stuck for quite some time on this problem so I finally decide to ask help to this forum!

There is an element on the webpage that I know for sure exist. The following command executed in the console of the browser opened by the test return a DOM element:

$x(“//*[@id=‘menu-gestion-centres-activites’]//span”)
returns this:
[span.p-menuitem-text.ng-tns-c1818545701-6.ng-star-inserted]

I can find the element too by iterating over the WebElements of the page with a for loop over the result of the GetElements command (All elements are logged by id and I can see the element is in the page).

But Selenium can’t find the element in the page. Despite using 20s wait, command like Wait Until Page Contains Element and Wait Until Element Is Visible never find the element by either its id, or using xpath.

I tried with
id=menu-gestion-centres-activites and
xpath=//*[@id=‘menu-gestion-centres-activites’]//span

I don’t know what to try anymore. Any suggestion?

Hi,

Is your element eventually in an Iframe or a shadow-dom?
That would explain why you find it, but can’t interact with it.

Regards
Charlie

1 Like

Would it be possible that the element is not infact in the dom if certain event hasn’t happened, like opening a menu or scrolling containing element to view or whatnot ?

Eg, while others have asked about iframe’s, at least from info you have given there could be changes in the DOM when you run $x() vs what your selenium session sees. Basing this on observation that app feels like it’s angular based (ng in the returned span selector). What im trying to point out that the code that actually adds the menu items could be lazy-loaded code.

1 Like