This is a promotion branch for the release v1.9.44 --------- Co-authored-by: NandanAnantharamu <67676905+NandanAnantharamu@users.noreply.github.com> Co-authored-by: Ashok Kumar M <35134347+marks0351@users.noreply.github.com> Co-authored-by: Anagh Hegde <anagh@appsmith.com> Co-authored-by: Nilesh Sarupriya <nilesh@appsmith.com> Co-authored-by: Nilesh Sarupriya <20905988+nsarupr@users.noreply.github.com> Co-authored-by: Abhinav Jha <abhinav@appsmith.com> Co-authored-by: Dhruvik Neharia <dhruvik@appsmith.com> Co-authored-by: Pawan Kumar <pawan.stardust@gmail.com> Co-authored-by: Appsmith Bot <74705725+appsmith-bot@users.noreply.github.com> Co-authored-by: Nilansh Bansal <nilansh@appsmith.com> Co-authored-by: arunvjn <32433245+arunvjn@users.noreply.github.com> Co-authored-by: Aishwarya UR <aishwarya@appsmith.com> Co-authored-by: Shrikant Sharat Kandula <shrikant@appsmith.com> Co-authored-by: Hetu Nandu <hetu@appsmith.com> Co-authored-by: Preet Sidhu <preetsidhu.bits@gmail.com> Co-authored-by: Nidhi <nidhi@appsmith.com> Co-authored-by: Nayan <nayan@appsmith.com> Co-authored-by: Aman Agarwal <aman@appsmith.com> Co-authored-by: Guilherme Ventura <1488378+danguilherme@users.noreply.github.com> Co-authored-by: Aishwarya-U-R <91450662+Aishwarya-U-R@users.noreply.github.com> Co-authored-by: Ayush Pahwa <ayush@appsmith.com> Co-authored-by: Favour Ohanekwu <fohanekwu@gmail.com> Co-authored-by: Manish Kumar <107841575+sondermanish@users.noreply.github.com> Co-authored-by: Nikhil Nandagopal <nikhil.nandagopal@gmail.com> Co-authored-by: Saroj <43822041+sarojsarab@users.noreply.github.com> Co-authored-by: sneha122 <sneha@appsmith.com> Co-authored-by: “sneha122” <“sneha@appsmith.com”> Co-authored-by: Ankita Kinger <ankita@appsmith.com> Co-authored-by: danceAndJive <99446612+danceAndJive@users.noreply.github.com> Co-authored-by: Kyle Zhang <u6133716@anu.edu.au> Co-authored-by: Rishabh Rathod <rishabh.rathod@appsmith.com> Co-authored-by: sharanya-appsmith <135708039+sharanya-appsmith@users.noreply.github.com> Co-authored-by: Diljit <diljit@appsmith.com> Co-authored-by: Vemparala Surya Vamsi <121419957+vsvamsi1@users.noreply.github.com> Co-authored-by: Rahul Barwal <rahul.barwal@appsmith.com> Co-authored-by: Jacques Ikot <jacquesikot@gmail.com> Co-authored-by: Satish Gandham <satish.iitg@gmail.com> Co-authored-by: Satish Gandham <hello@satishgandham.com> Co-authored-by: Victor Kostyuk <torcoste@gmail.com> Co-authored-by: Rudraprasad Das <rudra@appsmith.com> Co-authored-by: manish kumar <manish@appsmith.com>
142 lines
5.3 KiB
TypeScript
142 lines
5.3 KiB
TypeScript
import { ObjectsRegistry } from "../Objects/Registry";
|
|
import localForage from "localforage";
|
|
|
|
const OnboardingLocator = require("../../locators/FirstTimeUserOnboarding.json");
|
|
|
|
let datasourceName;
|
|
export class Onboarding {
|
|
private _aggregateHelper = ObjectsRegistry.AggregateHelper;
|
|
private _datasources = ObjectsRegistry.DataSources;
|
|
private _debuggerHelper = ObjectsRegistry.DebuggerHelper;
|
|
|
|
public readonly locators = {
|
|
back_to_canvas: "#back-to-canvas",
|
|
deploy: "#application-publish-btn",
|
|
table_widget_card: "#widget-card-draggable-tablewidgetv2",
|
|
create_query: "#create-query",
|
|
explorer_widget_tab: `#explorer-tab-options [data-value*="widgets"]`,
|
|
add_datasources: "#add_datasources",
|
|
connect_data_overlay: "#table-overlay-connectdata",
|
|
};
|
|
|
|
completeSignposting() {
|
|
cy.get(OnboardingLocator.checklistStatus).should("be.visible");
|
|
cy.get(OnboardingLocator.checklistStatus).should("contain", "0 of 5");
|
|
|
|
this._aggregateHelper
|
|
.GetElement(OnboardingLocator.checklistConnectionBtn)
|
|
.realHover()
|
|
.should("have.css", "cursor", "not-allowed");
|
|
this._aggregateHelper.GetHoverNClick(
|
|
OnboardingLocator.checklistDatasourceBtn,
|
|
0,
|
|
true,
|
|
);
|
|
this._aggregateHelper.AssertElementVisibility(
|
|
OnboardingLocator.datasourcePage,
|
|
);
|
|
this.closeIntroModal();
|
|
this._aggregateHelper.AssertElementAbsence(
|
|
OnboardingLocator.introModal,
|
|
10000,
|
|
);
|
|
if (Cypress.env("AIRGAPPED")) {
|
|
this._datasources.CreateDataSource("Mongo");
|
|
cy.get("@dsName").then(($dsName) => {
|
|
datasourceName = $dsName;
|
|
});
|
|
} else {
|
|
cy.get(OnboardingLocator.datasourceMock).first().click();
|
|
}
|
|
cy.wait(1000);
|
|
this._aggregateHelper.GetNClick(this._debuggerHelper.locators._helpButton);
|
|
cy.get(OnboardingLocator.checklistStatus).should("contain", "1 of 5");
|
|
this._aggregateHelper
|
|
.GetElement(OnboardingLocator.checklistConnectionBtn)
|
|
.realHover()
|
|
.should("have.css", "cursor", "not-allowed");
|
|
cy.get(OnboardingLocator.checklistActionBtn).should("be.visible");
|
|
cy.get(OnboardingLocator.checklistActionBtn).click();
|
|
cy.get(OnboardingLocator.createQuery).should("be.visible");
|
|
cy.get(OnboardingLocator.createQuery).click();
|
|
cy.wait(1000);
|
|
this._aggregateHelper.GetNClick(this._debuggerHelper.locators._helpButton);
|
|
cy.get(OnboardingLocator.checklistStatus).should("contain", "2 of 5");
|
|
this._aggregateHelper
|
|
.GetElement(OnboardingLocator.checklistActionBtn)
|
|
.realHover()
|
|
.should("have.css", "cursor", "auto");
|
|
cy.get(OnboardingLocator.checklistWidgetBtn).should("be.visible");
|
|
cy.get(OnboardingLocator.checklistWidgetBtn).click();
|
|
cy.get(OnboardingLocator.widgetSidebar).should("be.visible");
|
|
(cy as any).dragAndDropToCanvas("textwidget", { x: 400, y: 400 });
|
|
this._aggregateHelper.GetNClick(this._debuggerHelper.locators._helpButton);
|
|
cy.get(OnboardingLocator.checklistStatus).should("contain", "3 of 5");
|
|
this._aggregateHelper
|
|
.GetElement(OnboardingLocator.checklistWidgetBtn)
|
|
.realHover()
|
|
.should("have.css", "cursor", "auto");
|
|
|
|
cy.get(OnboardingLocator.checklistConnectionBtn).should("be.visible");
|
|
cy.get(OnboardingLocator.checklistConnectionBtn).click();
|
|
cy.get(OnboardingLocator.snipingBanner).should("be.visible");
|
|
cy.get(OnboardingLocator.snipingTextWidget)
|
|
.first()
|
|
.trigger("mouseover", { force: true })
|
|
.wait(500);
|
|
cy.get(OnboardingLocator.widgetName).should("be.visible");
|
|
cy.get(OnboardingLocator.widgetName).click();
|
|
this._aggregateHelper.GetNClick(this._debuggerHelper.locators._helpButton);
|
|
cy.get(OnboardingLocator.checklistStatus).should("contain", "4 of 5");
|
|
this._aggregateHelper
|
|
.GetElement(OnboardingLocator.checklistConnectionBtn)
|
|
.realHover()
|
|
.should("have.css", "cursor", "auto");
|
|
|
|
let open: any;
|
|
cy.window().then((window: any) => {
|
|
open = window.open;
|
|
window.open = Cypress._.noop;
|
|
});
|
|
cy.get(OnboardingLocator.checklistDeployBtn).should("be.visible");
|
|
cy.get(OnboardingLocator.checklistDeployBtn).click();
|
|
this._aggregateHelper.AssertElementAbsence(OnboardingLocator.introModal);
|
|
this._aggregateHelper.Sleep();
|
|
|
|
this._aggregateHelper.GetNClick(this._debuggerHelper.locators._helpButton);
|
|
this._aggregateHelper.AssertElementExist(
|
|
OnboardingLocator.checklistCompletionBanner,
|
|
);
|
|
cy.window().then((window) => {
|
|
window.open = open;
|
|
});
|
|
}
|
|
|
|
closeIntroModal() {
|
|
cy.get("body").then(($body) => {
|
|
if ($body.find(OnboardingLocator.introModalCloseBtn).length) {
|
|
this._aggregateHelper.GetNClick(OnboardingLocator.introModalCloseBtn);
|
|
}
|
|
});
|
|
}
|
|
|
|
skipSignposting() {
|
|
cy.get("body").then(($body) => {
|
|
if ($body.find(OnboardingLocator.introModalCloseBtn).length) {
|
|
cy.wrap(null).then(async () => {
|
|
localForage.config({
|
|
name: "Appsmith",
|
|
});
|
|
// return a promise to cy.then() that
|
|
// is awaited until it resolves
|
|
return localForage.setItem("ENABLE_START_SIGNPOSTING", false);
|
|
});
|
|
//this._aggregateHelper.RefreshPage();//this is causing CI flakiness, so using below
|
|
cy.window().then((win) => {
|
|
win.location.reload();
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|