Adding test ideas for Edit profile (#3700)

This commit is contained in:
prapullac 2021-03-26 12:51:46 +05:30 committed by GitHub
parent 973a70a624
commit cee1b86f32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 1 deletions

View File

@ -0,0 +1,32 @@
const dsl = require("../../../fixtures/profileDsl.json");
describe("Page functionality ", function() {
it("Profile Page", function() {
// Click on Name
// Navigate to "Edit Profile"
// Ensure Display name and Email Id are displayed to user
// Ensure Reset password link is disaplyed to user
}
)
it("Edit Display Name", function() {
// Click on Name
// Navigate to "Edit Profile"
// Ensure Display name is editable
// Click on the Field
// Edit the name of the field
// Ensure the name of the is displayed in the droped
}
)
it("Edit Display Name", function() {
// Click on Name
// Navigate to "Edit Profile"
// Ensure the "Reset Password" link is dispalyed to user
// Click on "Reset Password" link
// User must be navigated to Sign up page
// An link must be sent to User EmailId
}
)
}
)

View File

@ -2,6 +2,7 @@ const dsl = require("../../../fixtures/pageWidgetDsl.json");
describe("Page functionality ", function() {
it("Simple Page hide and show back", function() {
// Add addtional page
// Navigate to Page 2
// Click on the Page2 functions (Three dots)
@ -40,3 +41,4 @@ describe("Page functionality ", function() {
// Ensure the the clone page is not displayed and other pages are displayed to user
});
});

View File

@ -52,8 +52,9 @@ describe("Table functionality ", function() {
// Click on "Control pane" of the added column
// Navigate to computed value
// Bind the date widget to the comlumn computed value field
// Select the Column Type as "Date"
// Select the Column Type as "Date"
// Select a Date formate (Original and Display)
// Ensure the format is dispalyed according to the selection
});
});