'Cypress xpath click a drop-down menu and click wi
enter image description hereI have the xpath module insatlled and I try to do the following operations:
- Click on an expandable option (type div);
- After that click on the third item displayed in the list revealed after the click operation from point 1.
cy.xpath("//*[starts-with(text(),'Financial')] ").click().then((el) => {
cy.xpath("./div").click()
})
The error message yielded: Timed out retrying after 4000ms: Expected to find element: ./div, but never found it. Thanks a lot!
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|