* update default styling of widgets * [CodeFactor] Apply fixes * update widgets styles * fix eslint bug * update button colors * update primary button color * update primary button color * remove px in 0px in css * incorporate abhinav review feedbacks * fixed global styling of popover Co-authored-by: Pawan Kumar <pawankumar@Pawans-MacBook-Pro.local> Co-authored-by: codefactor-io <support@codefactor.io>
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
JavaScript
const onboarding = require("../../../locators/Onboarding.json");
|
|
const explorer = require("../../../locators/explorerlocators.json");
|
|
const homePage = require("../../../locators/HomePage.json");
|
|
const loginPage = require("../../../locators/LoginPage.json");
|
|
|
|
describe("Onboarding flow", function() {
|
|
it("Onboarding using Google Id ", function() {
|
|
// Navigate to Login Page
|
|
// Click on "Sign In with Google"
|
|
// Ensure user is navigated to Google Account
|
|
// Do select the Google Id
|
|
// Ensure user is navigated into the Appsmith
|
|
// Click on the icon on the right with single letter (Profile)
|
|
// Check the Email Id
|
|
// Click on Logout
|
|
});
|
|
|
|
it("Onboarding using Github ID ", function() {
|
|
// Navigate to Login Page
|
|
// Click on "Sign In with Github"
|
|
// Ensure user is navigated to Github Account
|
|
// Do select the Github Id
|
|
// Ensure user is navigated into the Appsmith
|
|
// Click on the icon on the right with single letter (Profile)
|
|
// Check the Email Id
|
|
// Click on Logout
|
|
});
|
|
});
|