updated flaky test (#3584)

Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com>
This commit is contained in:
NandanAnantharamu 2021-03-17 10:38:00 +05:30 committed by GitHub
parent cbd7828503
commit 8aca378028
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -128,7 +128,6 @@ if (Cypress.env("APPSMITH_GOOGLE_MAPS_API_KEY")) {
});
it("Map-Check Visible field Validation", function() {
cy.openPropertyPane("mapwidget");
//Check the disableed checkbox and Validate
cy.CheckWidgetProperties(commonlocators.visibleCheckbox);
cy.PublishtheApp();

View File

@ -15,8 +15,14 @@ describe("Onboarding", function() {
201,
);
cy.wait("@getDataSources");
cy.get(".t--start-building").click();
cy.wait("@getPluginForm").should(
"have.nested.property",
"response.body.responseMeta.status",
200,
);
cy.get(".t--start-building")
.should("be.visible")
.click({ force: true });
// Create and run query
cy.get(".t--onboarding-indicator").should("be.visible");
cy.get(".t--create-query").click();