Odoo18-Base/addons/test_website/static/tests/tours/website_settings.js
2025-01-06 10:57:38 +07:00

61 lines
2.2 KiB
JavaScript

/** @odoo-module */
import { registry } from "@web/core/registry";
import { stepUtils } from "@web_tour/tour_service/tour_utils";
const websiteName = "Website Test Settings";
registry.category("web_tour.tours").add("website_settings_m2o_dirty", {
url: "/odoo",
checkDelay: 500,
steps: () => [
stepUtils.showAppsMenuItem(),
{
content: "open settings",
trigger: ".o_app[data-menu-xmlid='base.menu_administration']",
run: "click",
},
{
content: "open website settings",
trigger: ".settings_tab .tab[data-key='website']",
run: "click",
},
{
content: "check that the 'Shared Customers Accounts' setting is checked",
trigger: "input[id^='shared_user_account']:checked",
},
{
content: "open website switcher",
trigger: "input[id^='website_id']",
run: `edit ${websiteName}`,
},
{
content: `select ${websiteName} in the website switcher`,
trigger: `li:has(.dropdown-item:contains('${websiteName}'))`,
run: "click",
},
{
content: `check that the settings of ${websiteName} are loaded (Shared Customers Accounts)`,
trigger: "input[id^='shared_user_account']:not(:checked)",
},
{
content: "click on the fake website setting after checking the edited website",
trigger: "button[name='action_website_test_setting']",
run: "click",
},
{
content: "check that we are on '/'",
trigger: ":iframe body div#wrap",
run: function () {
if (window.location.pathname !== "/") {
// If this fails, it's probably because the change of website
// in the settings dirty the record and so there is a dialog
// save/discard displayed. This test ensure that does not happen
// because it makes actions unreachable in multi website.
console.error("We should be on '/' the settings didn't work");
}
},
},
],
});