Skip to content
Snippets Groups Projects
Commit a102a9f3 authored by Christophe Matthieu's avatar Christophe Matthieu
Browse files

[IMP] web: add a test to check the one2many create form and onchange

parent fd01656f
Branches
Tags
No related merge requests found
......@@ -2,6 +2,7 @@ odoo.define('web.test.x2many', function (require) {
'use strict';
var Tour = require('web.Tour');
var inc;
Tour.register({
id: 'widget_x2many',
......@@ -25,11 +26,53 @@ Tour.register({
sampleText: 'test'
},
// try to add a user with one2many form
{
title: "click on moderator one2many drop down",
waitFor: '.oe_form_required input:propValue(test)',
element: 'tr:contains(Moderator) .oe_m2o_drop_down_button'
},
{
title: "click on 'Create and Edit...'",
element: '.oe_m2o_dropdown_option'
},
{
title: "insert a name into the modal form",
element: '.modal .oe_form_field.oe_form_required:first input',
sampleText: 'user_test',
onload: function () {
inc = new Date().getTime();
this.sampleText = 'user_test_' + inc;
}
},
{
title: "insert an email into the modal form",
waitFor: '.modal .oe_form_field.oe_form_required input:propValueContains(user_test)',
element: '.modal .oe_form_field.oe_form_required:eq(1) input',
sampleText: 'user_test@test',
onload: function () {
this.sampleText = 'user_test_' + inc + '@test';
}
},
{
title: "save the modal content and create the new moderator",
waitFor: '.modal .oe_form_field.oe_form_required input:propValueContains(@test)',
element: '.modal .o_formdialog_save',
},
{
title: "check if the modal is saved",
waitFor: 'tr:contains(Moderator) .oe_form_field_many2one input:propValueContains(user_test)',
},
{
title: "check the onchange from the o2m to the m2m",
waitFor: '.tab-pane:last tr:has(.oe_list_field_cell):not(:has(.oe_list_record_selector)):contains(user_test)',
},
// add message a
{
title: "create new message a",
waitFor: '.oe_form_required input:propValue(test)',
element: '.oe_form_field_x2many_list_row_add:first a'
},
{
......@@ -85,8 +128,8 @@ Tour.register({
{
title: "edit message b",
waitFor: 'tr:has(.oe_list_field_cell):not(:has(.oe_list_record_selector)):eq(1) .oe_list_field_cell:contains([test_trigger] )',
waitNot: 'tr:has(.oe_list_field_cell):not(:has(.oe_list_record_selector)):eq(2)',
waitFor: '.tab-pane:first tr:has(.oe_list_field_cell):not(:has(.oe_list_record_selector)):eq(1) .oe_list_field_cell:contains([test_trigger] )',
waitNot: '.tab-pane:first tr:has(.oe_list_field_cell):not(:has(.oe_list_record_selector)):eq(2)',
element: '.oe_list_field_cell:containsExact(b)'
},
{
......@@ -150,8 +193,8 @@ Tour.register({
{
title: "save discussion",
waitFor: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(1)',
waitNot: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(2)',
waitFor: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(2)',
waitNot: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(3)',
element: 'button.oe_form_button_save'
},
......@@ -168,8 +211,8 @@ Tour.register({
},
{
title: "check data 3",
waitFor: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(1)',
waitNot: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(2)',
waitFor: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(2)',
waitNot: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(3)',
},
// edit
......@@ -316,8 +359,8 @@ Tour.register({
},
{
title: "check data 7",
waitFor: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(1)',
waitNot: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(2)',
waitFor: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(2)',
waitNot: '.oe_form_field_many2many tbody tr:has(.oe_list_field_char):eq(3)',
},
// edit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment