diff --git a/app/client/cypress/manual_TestSuite/Edit_Profile_Spec.js b/app/client/cypress/manual_TestSuite/Edit_Profile_Spec.js new file mode 100644 index 0000000000..a5cdd9c9a5 --- /dev/null +++ b/app/client/cypress/manual_TestSuite/Edit_Profile_Spec.js @@ -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 + } + ) +} +) \ No newline at end of file diff --git a/app/client/cypress/manual_TestSuite/Page_Features_Spec.js b/app/client/cypress/manual_TestSuite/Page_Features_Spec.js index dcc6b6893c..e7796de76a 100644 --- a/app/client/cypress/manual_TestSuite/Page_Features_Spec.js +++ b/app/client/cypress/manual_TestSuite/Page_Features_Spec.js @@ -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 }); }); + diff --git a/app/client/cypress/manual_TestSuite/new_Table_Spec.js b/app/client/cypress/manual_TestSuite/new_Table_Spec.js index 9e74f08edd..a30b32b631 100644 --- a/app/client/cypress/manual_TestSuite/new_Table_Spec.js +++ b/app/client/cypress/manual_TestSuite/new_Table_Spec.js @@ -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 }); + });