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
validateFormHeader();
// verify URL & copy it for subsequent test
cy.url().should("contain", `Country/Form-1`);
cy.url().then((url) => {
cy.log(url);
formViewURL = url;
});
cy.wait(300);
// // verify URL & copy it for subsequent test
// cy.url().should("contain", `Country/Form-1`);
// cy.url().then((url) => {
// cy.log(url);
// formViewURL = url;
// });
//
// cy.wait(300);
});
// it.skip(`Validate ${viewType}: URL validation after re-access`, () => {

Loading…
Cancel
Save