1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
odoo.define('crm.tour_crm_rainbowman', function (require) {
"use strict";
var tour = require('web_tour.tour');
tour.register('crm_rainbowman', {
test: true,
url: "/web",
}, [
tour.stepUtils.showAppsMenuItem(),
{
trigger: ".o_app[data-menu-xmlid='crm.crm_menu_root']",
content: "open crm app",
}, {
trigger: ".o-kanban-button-new",
content: "click create",
}, {
trigger: "input[name=name]",
content: "complete name",
run: "text Test Lead 1",
}, {
trigger: "div[name=expected_revenue] > input",
content: "complete expected revenue",
run: "text 999999997",
}, {
trigger: "button.o_kanban_add",
content: "create lead",
}, {
trigger: ".o_kanban_record .o_kanban_record_title:contains('Test Lead 1')",
content: "move to won stage",
run: "drag_and_drop .o_opportunity_kanban .o_kanban_group:eq(3) "
}, {
trigger: ".o_reward_rainbow",
extra_trigger: ".o_reward_rainbow",
run: function () {} // check rainbowman is properly displayed
}, {
trigger: ".o-kanban-button-new",
content: "create second lead",
}, {
trigger: "input[name=name]",
content: "complete name",
run: "text Test Lead 2",
}, {
trigger: "div[name=expected_revenue] > input",
content: "complete expected revenue",
run: "text 999999998",
}, {
trigger: "button.o_kanban_add",
content: "create lead",
}, {
trigger: ".o_kanban_record .o_kanban_record_title:contains('Test Lead 2')",
run: function () {} // wait for the record to be properly created
}, {
// move first test back to new stage to be able to test rainbowman a second time
trigger: ".o_kanban_record .o_kanban_record_title:contains('Test Lead 1')",
content: "move back to new stage",
run: "drag_and_drop .o_opportunity_kanban .o_kanban_group:eq(0) "
}, {
trigger: ".o_kanban_record .o_kanban_record_title:contains('Test Lead 2')",
content: "click on second lead",
}, {
trigger: ".o_statusbar_status button[data-value='4']",
content: "move lead to won stage",
}, {
trigger: ".o_statusbar_status button[data-value='1']",
extra_trigger: ".o_reward_rainbow",
content: "move lead to previous stage & rainbowman appears",
}, {
trigger: "button[name=action_set_won_rainbowman]",
content: "click button mark won",
}, {
trigger: ".o_menu_brand",
extra_trigger: ".o_reward_rainbow",
content: "last rainbowman appears",
}
]);
});
|