sale/static/tests/tours/sale_signature.js

49 lines
1.3 KiB
JavaScript

/** @odoo-module **/
import { registry } from "@web/core/registry";
// This tour relies on data created on the Python test.
registry.category("web_tour.tours").add('sale_signature', {
test: true,
url: '/my/quotes',
steps: () => [
{
content: "open the test SO",
trigger: 'a:containsExact("test SO")',
},
{
content: "click sign",
trigger: 'a:contains("Sign")',
},
{
content: "check submit is enabled",
trigger: '.o_portal_sign_submit:enabled',
run: function () {},
},
{
content: "click select style",
trigger: '.o_web_sign_auto_select_style button',
},
{
content: "click style 4",
trigger: '.o_web_sign_auto_select_style .dropdown-item:eq(3)',
},
{
content: "click submit",
trigger: '.o_portal_sign_submit:enabled',
},
{
content: "check it's confirmed",
trigger: '#quote_content:contains("Thank You")',
}, {
trigger: '#quote_content',
run: function () {
window.location.href = window.location.origin + '/web';
}, // Avoid race condition at the end of the tour by returning to the home page.
},
{
trigger: 'nav',
run: function() {},
}
]});