1. Move package appsmith-interfaces/src/main/java/com/appsmith/external/pluginExceptions-> appsmith-interfaces/src/main/java/com/appsmith/external/exceptions/pluginExceptions 2. Move enum AppsmithErrorAction from appsmith-server/src/main/java/com/appsmith/server/exceptions/AppsmithError.java -> appsmith-interfaces/src/main/java/com/appsmith/external/exceptions/AppsmithErrorAction.java, so that both plugin exceptions and server exceptions could use the same enum. 3. Log exception based on the error action defined for each exception.
35 lines
1.1 KiB
JavaScript
35 lines
1.1 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
|
|
}
|
|
)
|
|
}
|
|
)
|