summaryrefslogtreecommitdiff
path: root/addons/website/static/tests/tours/restricted_editor.js
blob: 10f24291be81b4fdcac11816271a68b71cf62ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
odoo.define("website.tour.restricted_editor", function (require) {
"use strict";

var tour = require("web_tour.tour");

tour.register("restricted_editor", {
    test: true,
    url: "/",
}, [{
    trigger: 'a[data-action=edit]',
    content: "Click \"EDIT\" button of website as Restricted Editor",
    extra_trigger: ".homepage",
}, {
    trigger: '#oe_snippets.o_loaded',
    content: "Check that the snippets loaded properly",
}]);
});