Skip to content
Snippets Groups Projects
Verified Commit a01e0121 authored by Mark's avatar Mark
Browse files

Refactor tests

parent f4fd9288
No related branches found
No related tags found
1 merge request!2Minimal frontend
Pipeline #787 passed with stage
in 2 minutes and 34 seconds
......@@ -93,7 +93,7 @@ module.exports = {
editUsers.setValue("@email", "trigger@change.event")
editUsers.assert.visible("@save")
},
'Add a user' : async function(browser){
'Add and delete a user' : async function(browser){
const users = browser.page.users();
const roles = users.section.leftSidebar;
const addUser = users.section.addUser;
......@@ -121,11 +121,10 @@ module.exports = {
editUsers
.assert.containsText({selector: "@username", index: 2}, newUsername)
.assert.value({selector: "@email", index: 2}, newEmail)
// do full page refresh and see if user is still available
await browser.refresh()
editUsers
.assert.containsText({selector: "@username", index: 2}, newUsername)
.assert.value({selector: "@email", index: 2}, newEmail)
editUsers.click({selector: "@delete", index: 2})
// delete User and check if deletion was successful
.click({selector: "@delete", index: 2})
.waitForElementNotPresent({selector: "@rows", index: 2})
roles
.verify.containsText('@userCount', '2')
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment