Cypress test runner doesnt shown iframe when I pinned cy.get('iframe') command #27591
Closed
pablosmalys
started this conversation in
General
Replies: 1 comment
-
found this #1433 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have issue when using open mode of Cypress. When I use to automate some iframe parts of app, in test runner after test executes I can not see iframe part when I pinned command which works with iframe. Is it something incorrectly set or this is expected behaviour by Cypress?
I also have this pluggin installed https://www.npmjs.com/package/cypress-iframe. But I tried uninstalled and even test on new repo when this plugin had never been installed. In all cases same results.
Cypress version: 12.11.0
I am using chrome v111 and electron v 106. Issue occurs on both.
this is the test:
it("test iframe", () => { cy.visit("https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe"); cy.get("iframe"); });
Beta Was this translation helpful? Give feedback.
All reactions