mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-26 18:32:04 +02:00
Initial commit: Sale packages
This commit is contained in:
commit
14e3d26998
6469 changed files with 2479670 additions and 0 deletions
|
|
@ -0,0 +1,169 @@
|
|||
odoo.define('website_sale_comparison.tour_comparison', function (require) {
|
||||
'use strict';
|
||||
|
||||
var tour = require('web_tour.tour');
|
||||
const tourUtils = require('website_sale.tour_utils');
|
||||
|
||||
tour.register('product_comparison', {
|
||||
test: true,
|
||||
url: "/shop",
|
||||
}, [
|
||||
// test from shop page
|
||||
{
|
||||
content: "add first product 'Color T-Shirt' in a comparison list",
|
||||
trigger: '.oe_product_cart:contains("Color T-Shirt") .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 'Color Pants' in a comparison list",
|
||||
trigger: '.oe_product_cart:contains("Color Pants") .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("Color T-Shirt")',
|
||||
trigger: '.o_product_row:contains("Color Pants")',
|
||||
run: function () {},
|
||||
},
|
||||
// test form product page
|
||||
{
|
||||
content: "go to product page of Color Shoes (with variants)",
|
||||
trigger: '.oe_product_cart a:contains("Color Shoes")',
|
||||
},
|
||||
{
|
||||
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("Color Shoes (Red)")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "select 2nd variant(Pink Color)",
|
||||
trigger: '.variant_attribute[data-attribute_name="Color"] input[data-value_name="Pink"]',
|
||||
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("Color Shoes (Red)")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "check limit is not reached",
|
||||
trigger: ':not(.o_comparelist_limit_warning)',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "select 3rd variant(Blue)",
|
||||
trigger: '.variant_attribute[data-attribute_name="Color"] input[data-value_name="Blue"]',
|
||||
},
|
||||
{
|
||||
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("Color Pants (Red)")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "check 2nd product contains correct variant",
|
||||
trigger: '.o_product_comparison_table:contains("Color Shoes (Pink)")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "check 3rd product is correctly added",
|
||||
trigger: '.o_product_comparison_table:contains("Color Shoes (Red)")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "check 4th product is correctly added",
|
||||
trigger: '.o_product_comparison_table:contains("Color T-Shirt")',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "remove Color Shoes (Pink) from compare table",
|
||||
trigger: '#o_comparelist_table .o_comparelist_remove:eq(2)',
|
||||
},
|
||||
{
|
||||
content: "check color shoes pink variant is removed",
|
||||
trigger: '#o_comparelist_table:not(:contains("Color Shoes (Pink)"))',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "open compare menu",
|
||||
extra_trigger: 'body:has(.o_product_row:contains("Color T-Shirt") .o_remove)',
|
||||
trigger: '.o_product_panel_header',
|
||||
},
|
||||
{
|
||||
content: "remove product",
|
||||
trigger: '.o_product_row:contains("Color T-Shirt") .o_remove',
|
||||
},
|
||||
{
|
||||
content: "click on compare button to reload",
|
||||
trigger: '.o_comparelist_button a',
|
||||
},
|
||||
{
|
||||
content: "check product 'Color T-Shirt' is removed",
|
||||
trigger: '#o_comparelist_table:not(:contains("Color T-Shirt"))',
|
||||
run: function () {},
|
||||
},
|
||||
{
|
||||
content: "add product 'Color Pants' to cart",
|
||||
trigger: '.product_summary:contains("Color Pants") .a-submit:contains("Add to Cart")',
|
||||
},
|
||||
tourUtils.goToCart(),
|
||||
{
|
||||
content: "check product correctly added to cart",
|
||||
trigger: '#cart_products:contains("Color Pants") .js_quantity[value="1"]',
|
||||
run: function () {},
|
||||
},
|
||||
]);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue