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?