mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
167 lines
5.7 KiB
JavaScript
167 lines
5.7 KiB
JavaScript
|
|
import { commonSelectors } from "Selectors/common";
|
||
|
|
import { commonText } from "Texts/common";
|
||
|
|
import * as signup from "Support/utils/selfHostSignUp";
|
||
|
|
import { logout } from "Support/utils/common";
|
||
|
|
|
||
|
|
describe("Self host onboarding", () => {
|
||
|
|
beforeEach(() => {
|
||
|
|
cy.visit('/setup');
|
||
|
|
});
|
||
|
|
|
||
|
|
it("verify elements on self host onboarding page", () => {
|
||
|
|
cy.get(commonSelectors.selfHostSetUpBanner).should("be.visible");
|
||
|
|
cy.get(commonSelectors.selfHostSetUpSubBanner).should("be.visible");
|
||
|
|
cy.get(commonSelectors.selfHostSetUpCard).should("be.visible");
|
||
|
|
cy.get(commonSelectors.selfHostSetUpCardImage).should("be.visible");
|
||
|
|
cy.get(commonSelectors.selfHostSetUpCardHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.selfHostSetUpCardHeader
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.selfHostSetUpCardSubHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.selfHostSetUpCardSubHeader
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.setUpToolJetButton)
|
||
|
|
.verifyVisibleElement("have.text", commonText.setUpToolJetButton)
|
||
|
|
.click();
|
||
|
|
|
||
|
|
signup.selfHostCommonElements();
|
||
|
|
cy.get(commonSelectors.onboardingPageHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.setUpAdminHeader
|
||
|
|
);
|
||
|
|
|
||
|
|
cy.get(commonSelectors.userNameInputLabel).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.userNameInputLabel
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.nameInputField).should("be.visible");
|
||
|
|
cy.get(commonSelectors.emailInputLabel).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.emailInputLabel
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.emailInputField).should("be.visible");
|
||
|
|
cy.get(commonSelectors.passwordLabel).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.passwordLabel
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.passwordInputField).should("be.visible");
|
||
|
|
|
||
|
|
cy.get(commonSelectors.passwordHelperText).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.passwordHelperText
|
||
|
|
);
|
||
|
|
|
||
|
|
cy.get(commonSelectors.signUpTermsHelperText).should(($el) => {
|
||
|
|
expect($el.contents().first().text().trim()).to.eq(
|
||
|
|
commonText.selfHostSignUpTermsHelperText
|
||
|
|
);
|
||
|
|
});
|
||
|
|
cy.get(commonSelectors.termsOfServiceLink)
|
||
|
|
.verifyVisibleElement("have.text", commonText.termsOfServiceLink)
|
||
|
|
.and("have.attr", "href")
|
||
|
|
.and("equal", "https://www.tooljet.com/terms");
|
||
|
|
cy.get(commonSelectors.privacyPolicyLink)
|
||
|
|
.verifyVisibleElement("have.text", commonText.privacyPolicyLink)
|
||
|
|
.and("have.attr", "href")
|
||
|
|
.and("equal", "https://www.tooljet.com/privacy");
|
||
|
|
|
||
|
|
cy.clearAndType(commonSelectors.nameInputField, "The Developer");
|
||
|
|
cy.clearAndType(commonSelectors.emailInputField, "[email protected]");
|
||
|
|
cy.clearAndType(commonSelectors.passwordInputField, "password");
|
||
|
|
cy.get(commonSelectors.continueButton).click();
|
||
|
|
|
||
|
|
signup.selfHostCommonElements();
|
||
|
|
cy.get(commonSelectors.userAccountNameAvatar).should("be.visible");
|
||
|
|
cy.get(commonSelectors.onboardingPageHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
"Set up your workspace"
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.workspaceNameInputLabel).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.workspaceNameInputLabel
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.workspaceNameInputField).should("be.visible");
|
||
|
|
cy.clearAndType(commonSelectors.workspaceNameInputField, "My workspace");
|
||
|
|
cy.get(commonSelectors.continueButton).click();
|
||
|
|
|
||
|
|
signup.selfHostCommonElements();
|
||
|
|
signup.commonElementsWorkspaceSetup();
|
||
|
|
cy.get(commonSelectors.onboardingPageHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.companyPageHeader("The Developer")
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.companyNameInputField).should("be.visible");
|
||
|
|
cy.clearAndType(commonSelectors.companyNameInputField, "ToolJet");
|
||
|
|
cy.get(commonSelectors.continueButton).click();
|
||
|
|
|
||
|
|
signup.selfHostCommonElements();
|
||
|
|
signup.commonElementsWorkspaceSetup();
|
||
|
|
cy.get(commonSelectors.onboardingPageHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.userRolePageHeader
|
||
|
|
);
|
||
|
|
signup.verifyandModifyUserRole();
|
||
|
|
|
||
|
|
signup.selfHostCommonElements();
|
||
|
|
signup.commonElementsWorkspaceSetup();
|
||
|
|
cy.get(commonSelectors.onboardingPageHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.sizeOftheCompanyHeader
|
||
|
|
);
|
||
|
|
|
||
|
|
signup.verifyandModifySizeOftheCompany();
|
||
|
|
|
||
|
|
cy.get(commonSelectors.pageLogo).should("be.visible");
|
||
|
|
cy.get(commonSelectors.setUpadminCheckPoint).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.setUpadminCheckPoint
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.setUpworkspaceCheckPoint).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.setUpworkspaceCheckPoint
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.companyProfileCheckPoint).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.companyProfileCheckPoint
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.onboardingPageSubHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.onboardingPageSubHeader
|
||
|
|
);
|
||
|
|
cy.get(commonSelectors.continueButton).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
commonText.continueButton
|
||
|
|
);
|
||
|
|
|
||
|
|
signup.commonElementsWorkspaceSetup();
|
||
|
|
cy.get(commonSelectors.onboardingPageHeader).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
"Enter your phone number"
|
||
|
|
);
|
||
|
|
|
||
|
|
cy.get(".form-control").should("be.visible");
|
||
|
|
cy.get(".tj-onboarding-phone-input-wrapper")
|
||
|
|
.find("input")
|
||
|
|
.type("919876543210");
|
||
|
|
cy.get(commonSelectors.continueButton).click();
|
||
|
|
|
||
|
|
cy.get("body").then(($title) => {
|
||
|
|
if (!$title.text().includes("Enter your phone number")) {
|
||
|
|
cy.get(commonSelectors.workspaceName).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
"My workspace"
|
||
|
|
);
|
||
|
|
|
||
|
|
logout();
|
||
|
|
cy.appUILogin();
|
||
|
|
|
||
|
|
cy.get(commonSelectors.workspaceName).verifyVisibleElement(
|
||
|
|
"have.text",
|
||
|
|
"My workspace"
|
||
|
|
);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
});
|