Answers for "open window in same tab chrome"

0

open window in same tab

const editWindowUrl = <yourUrl>
cy.window().then((win) => {
const stub = cy.stub(win, "open").as("windowOpen");
});
cy.contains("Edit").click();
cy.get("@windowOpen").should("be.called");
cy.window().then((win) => {
win.location.href = editWindowUrl;
});
Posted by: Guest on October-05-2021

Code answers related to "open window in same tab chrome"

Code answers related to "Javascript"

Browse Popular Code Answers by Language