test: stability experiment- avoid URL access

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
Raju Udava
2022-09-06 19:35:53 +05:30
parent 02acfef060
commit f7e057ebcf

View File

@@ -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`, () => {