/** @odoo-module **/ import wTourUtils from "website.tour_utils"; const snippets = [ { id: 's_cover', name: 'Cover', }, { id: 's_text_image', name: 'Text - Image', }, { id: 's_image_text', name: 'Image - Text', }, { id: 's_picture', name: 'Picture', }, { id: 's_masonry_block', name: 'Masonry', }, { id: 's_call_to_action', name: 'Call to Action', }, ]; wTourUtils.registerThemeHomepageTour("vehicle_tour", [ wTourUtils.assertCssVariable('--color-palettes-name', '"vehicle-1"'), wTourUtils.dragNDrop(snippets[0], 'top'), wTourUtils.clickOnText(snippets[0], 'h1', 'top'), wTourUtils.goBackToBlocks(), wTourUtils.dragNDrop(snippets[1], 'top'), wTourUtils.dragNDrop(snippets[2], 'top'), wTourUtils.dragNDrop(snippets[3], 'top'), wTourUtils.dragNDrop(snippets[4], 'top'), wTourUtils.dragNDrop(snippets[5], 'top'), wTourUtils.clickOnSnippet(snippets[5]), wTourUtils.changeBackgroundColor(), wTourUtils.selectColorPalette(), ]);