151 lines
4.6 KiB
JavaScript
151 lines
4.6 KiB
JavaScript
import { registry } from "@web/core/registry";
|
|
|
|
function logout() {
|
|
return [
|
|
{
|
|
content: "check we're logged in",
|
|
trigger: ".o_user_menu .dropdown-toggle",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "click the Log out button",
|
|
trigger: ".dropdown-item[data-menu=logout]",
|
|
run: "click",
|
|
},
|
|
];
|
|
}
|
|
|
|
registry.category("web_tour.tours").add("test_user_switch", {
|
|
url: "/odoo",
|
|
steps: () => [
|
|
...logout(),
|
|
{
|
|
content: "check if the login input is empty",
|
|
trigger: "input#login:empty",
|
|
},
|
|
{
|
|
content: "check if the password input is empty",
|
|
trigger: "input#password:empty",
|
|
},
|
|
{
|
|
content: "Should contains the user switch button",
|
|
trigger: ".oe_login_form .o_user_switch_btn",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "Click on Marc Demo on the quick login page",
|
|
trigger:
|
|
".o_user_switch:not(:has(.list-group-item:nth-child(2))) .list-group-item:contains('Marc Demo')",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "Check user choice button to back on the quick login page",
|
|
trigger: ".oe_login_form .o_user_switch_btn",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "Display the login form",
|
|
trigger: ".o_user_switch .fa-user-circle-o",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "fill the login",
|
|
trigger: "input#login",
|
|
run: "edit admin",
|
|
},
|
|
{
|
|
content: "fill the password",
|
|
trigger: "input#password",
|
|
run: "edit admin",
|
|
},
|
|
{
|
|
content: "click on login button",
|
|
trigger: 'button:contains("Log in")',
|
|
run: "click",
|
|
},
|
|
...logout(),
|
|
{
|
|
content: "Check if there is Mitchell Admin in user list selection",
|
|
trigger: ".o_user_switch .list-group-item:nth-child(1):contains('Mitchell Admin')",
|
|
},
|
|
{
|
|
content: "Check if there is Marc Demo in user list selection",
|
|
trigger: ".o_user_switch .list-group-item:nth-child(2):contains('Marc Demo')",
|
|
},
|
|
{
|
|
content: "Choice demo",
|
|
trigger: ".o_user_switch .list-group-item:contains('Marc Demo')",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "check the login for demo",
|
|
trigger: "input#login:value('demo')",
|
|
},
|
|
{
|
|
content: "fill the password",
|
|
trigger: "input#password",
|
|
run: "edit demo",
|
|
},
|
|
{
|
|
content: "Check back button to back on the quick login page",
|
|
trigger: ".oe_login_form .o_user_switch_btn",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "Check have 2 users",
|
|
trigger: ".o_user_switch .list-group-item:nth-child(2)",
|
|
},
|
|
{
|
|
content: "Click on Mitchell Admin",
|
|
trigger: ".o_user_switch .list-group-item:nth-child(1):contains('Mitchell Admin')",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "check the login for admin",
|
|
trigger: "input#login:value('admin')",
|
|
},
|
|
{
|
|
content: "fill the password",
|
|
trigger: "input#password",
|
|
run: "edit admin",
|
|
},
|
|
{
|
|
content: "Check back button to back on the quick login page",
|
|
trigger: ".oe_login_form .o_user_switch_btn",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "Display the login form",
|
|
trigger: ".o_user_switch .fa-user-circle-o",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "the login form is display",
|
|
trigger: "form.oe_login_form:not(.d-none)",
|
|
},
|
|
{
|
|
content: "check if the login input is empty",
|
|
trigger: "input#login:empty",
|
|
},
|
|
{
|
|
content: "check if the password input is empty",
|
|
trigger: "input#password:empty",
|
|
},
|
|
{
|
|
content: "Back to user switch",
|
|
trigger: ".oe_login_form .o_user_switch_btn",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "Remove the admin user from page",
|
|
trigger: ".o_user_switch .d-flex:first-child .fa-times",
|
|
run: "click",
|
|
},
|
|
{
|
|
content: "only one user is left on quick login",
|
|
trigger:
|
|
".o_user_switch:not(:has(.list-group-item:nth-child(2))) .list-group-item:contains('Marc Demo')",
|
|
},
|
|
],
|
|
});
|