Browse Source

test: stability experiment- avoid URL access

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/3511/head
Raju Udava 2 years ago
parent
commit
f7e057ebcf
  1. 16
      scripts/cypress/integration/common/4c_form_view_detailed.js

16
scripts/cypress/integration/common/4c_form_view_detailed.js

@ -386,14 +386,14 @@ export const genTest = (apiType, dbType) => {
// validate if form has appeared again // validate if form has appeared again
validateFormHeader(); validateFormHeader();
// verify URL & copy it for subsequent test // // verify URL & copy it for subsequent test
cy.url().should("contain", `Country/Form-1`); // cy.url().should("contain", `Country/Form-1`);
cy.url().then((url) => { // cy.url().then((url) => {
cy.log(url); // cy.log(url);
formViewURL = url; // formViewURL = url;
}); // });
//
cy.wait(300); // cy.wait(300);
}); });
// it.skip(`Validate ${viewType}: URL validation after re-access`, () => { // it.skip(`Validate ${viewType}: URL validation after re-access`, () => {

Loading…
Cancel
Save