Odoo18-Base/addons/portal/static/tests/tours/skip_to_content.js

22 lines
667 B
JavaScript
Raw Permalink Normal View History

2025-01-06 10:57:38 +07:00
import { registry } from "@web/core/registry";
registry.category("web_tour.tours").add("skip_to_content", {
url: "/",
steps: () => [
{
content: "Make sure that Skip to Content button is on top of all the links present in header",
trigger: "a:first-child[class~='o_skip_to_content']",
run: "click"
},
{
content: "Check if we have been redirected to #wrap",
trigger: "body",
run: () => {
if (!window.location.href.endsWith("#wrap")) {
console.error("We should be on #wrap.");
}
}
}
]
});