website_sale_comparison/static/tests/tours/website_sale_comparison.js

168 lines
5.9 KiB
JavaScript

/** @odoo-module **/
import { registry } from "@web/core/registry";
import tourUtils from "@website_sale/js/tours/tour_utils";
registry.category("web_tour.tours").add('product_comparison', {
test: true,
url: "/shop",
steps: () => [
// test from shop page
{
content: "add first product 'Warranty' in a comparison list",
trigger: '.oe_product_cart:contains("Warranty") .o_add_compare',
},
{
content: "check compare button contains one product",
trigger: '.o_product_circle:contains(1)',
run: function () {},
},
{
content: "check popover is closed when only one product",
trigger: 'body:not(:has(.comparator-popover))',
run: function () {},
},
{
content: "add second product 'Conference Chair' in a comparison list",
trigger: '.oe_product_cart:contains("Conference Chair") .o_add_compare',
},
{
content: "check popover is now open and compare button contains two products",
extra_trigger: '.comparator-popover',
trigger: ' .o_product_circle:contains(2)',
run: function () {},
},
{
content: "check products name are correct in the comparelist",
extra_trigger: '.o_product_row:contains("Warranty")',
trigger: '.o_product_row:contains("Conference Chair")',
run: function () {},
},
// test form product page
{
content: "go to product page of customizable desk(with variants)",
trigger: '.oe_product_cart a:contains("Customizable Desk")',
},
{
content: "check compare button is still there and contains 2 products",
extra_trigger: '#product_details',
trigger: '.o_product_circle:contains(2)',
run: function () {},
},
{
content: "check popover is closed after changing page",
trigger: 'body:not(:has(.comparator-popover))',
run: function () {},
},
{
content: "add first variant to comparelist",
trigger: '.o_add_compare_dyn',
},
{
content: "check the comparelist is now open and contains 3rd product with correct variant",
extra_trigger: '.comparator-popover',
trigger: '.o_product_row:contains("Customizable Desk (Steel, White)")',
run: function () {},
},
{
content: "select 2nd variant(Black Color)",
trigger: '.variant_attribute[data-attribute_name="Color"] input[data-value_name="Black"]',
run: function (actions) {
$('img[class*="product_detail_img"]').attr('data-image-to-change', 1);
actions.click();
},
},
{
content: "click on compare button to add in comparison list when variant changed",
extra_trigger: 'img[class*="product_detail_img"]:not([data-image-to-change])',
trigger: '.o_add_compare_dyn',
},
{
content: "comparelist contains 4th product with correct variant",
extra_trigger: '.o_product_circle:contains(4)',
trigger: '.o_product_row:contains("Customizable Desk (Steel, Black)")',
run: function () {},
},
{
content: "check limit is not reached",
trigger: ':not(.o_comparelist_limit_warning)',
run: function () {},
},
{
content: "select 3nd variant(Custom)",
trigger: '.variant_attribute[data-attribute_name="Legs"] input[data-value_name="Custom"]',
},
{
content: "click on compare button to add in comparison list when variant changed",
extra_trigger: 'body:not(:has(.carousel-indicators))', // there is 1 image on the custom variant
trigger: '.o_add_compare_dyn',
},
{
content: "check limit is reached",
trigger: '.o_comparelist_limit_warning',
run: function () {},
},
{
content: "click on compare button",
trigger: '.o_comparelist_button a',
},
// test on compare page
{
content: "check 1st product contains correct variant",
trigger: '.o_product_comparison_table:contains("Conference Chair (Steel)")',
run: function () {},
},
{
content: "check 2nd product contains correct variant",
trigger: '.o_product_comparison_table:contains("Customizable Desk (Steel, White)")',
run: function () {},
},
{
content: "check 3rd product is correctly added",
trigger: '.o_product_comparison_table:contains("Customizable Desk (Steel, Black)")',
run: function () {},
},
{
content: "check 4th product is correctly added",
trigger: '.o_product_comparison_table:contains("Warranty")',
run: function () {},
},
{
content: "remove Customizable Desk (Steel, Black) from compare table",
trigger: '#o_comparelist_table .o_comparelist_remove:eq(2)',
},
{
content: "check customizable table with black variant is removed",
trigger: '#o_comparelist_table:not(:contains("Customizable Desk (Steel, Black)"))',
run: function () {},
},
{
content: "open compare menu",
extra_trigger: 'body:has(.o_product_row:contains("Warranty") .o_remove)',
trigger: '.o_product_panel_header',
},
{
content: "remove product",
trigger: '.o_product_row:contains("Warranty") .o_remove',
},
{
content: "click on compare button to reload",
trigger: '.o_comparelist_button a',
},
{
content: "check product 'Warranty' is removed",
trigger: '#o_comparelist_table:not(:contains("Warranty"))',
run: function () {},
},
{
content: "add product 'Conference Chair' to cart",
trigger: '.product_summary:contains("Conference Chair") .a-submit:contains("Add to Cart")',
},
tourUtils.goToCart(),
{
content: "check product correctly added to cart",
trigger: '#cart_products:contains("Conference Chair") .js_quantity[value="1"]',
run: function () {},
},
]});