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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
odoo.define('website_livechat.tour_common', function(require) {
'use strict';
var session = require('web.session');
var LivechatButton = require('im_livechat.legacy.im_livechat.im_livechat').LivechatButton;
/**
* Alter this method for test purposes.
*
* Fake the notification after sending message
* As bus is not available, it's necessary to add the message in the chatter + in livechat.messages
*
* Add a class to the chatter window after sendFeedback is done
* to force the test to wait until feedback is really done
* (to check afterwards if the livechat session is set to inactive)
*
* Note : this asset is loaded for tests only (rpc call done only during tests)
*/
LivechatButton.include({
_sendMessage: function (message) {
var self = this;
return this._super.apply(this, arguments).then(function () {
if (message.isFeedback) {
$('div.o_thread_window_header').addClass('feedback_sent');
}
else {
session.rpc('/bus/test_mode_activated', {}).then(function (in_test_mode) {
if (in_test_mode) {
var notification = [
self._livechat.getUUID(),
{
'id': -1,
'author_id': [0, 'Website Visitor Test'],
'email_from': 'Website Visitor Test',
'body': '<p>' + message.content + '</p>',
'is_discussion': true,
'subtype_id': [1, "Discussions"],
'date': moment().format('YYYY-MM-DD HH:mm:ss'),
}
]
self._handleNotification(notification);
}
});
}
});
},
});
/*******************************
* Common Steps
*******************************/
var startStep = [{
content: "click on livechat widget",
trigger: "div.o_livechat_button"
}, {
content: "Say hello!",
trigger: "input.o_composer_text_field",
run: "text Hello Sir!"
}, {
content: "Send the message",
trigger: "input.o_composer_text_field",
run: function() {
$('input.o_composer_text_field').trigger($.Event('keydown', {which: $.ui.keyCode.ENTER}));
}
}, {
content: "Verify your message has been typed",
trigger: "div.o_thread_message_content>p:contains('Hello Sir!')"
}, {
content: "Verify there is no duplicates",
trigger: "body",
run: function () {
if ($("div.o_thread_message_content p:contains('Hello Sir!')").length === 1) {
$('body').addClass('no_duplicated_message');
}
}
}, {
content: "Is your message correctly sent ?",
trigger: 'body.no_duplicated_message'
}];
var endDiscussionStep = [{
content: "Close the chatter",
trigger: "a.o_thread_window_close",
run: function() {
$('a.o_thread_window_close').click();
}
}];
var feedbackStep = [{
content: "Type a feedback",
trigger: "div.o_livechat_rating_reason > textarea",
run: "text ;-) This was really helpful. Thanks ;-)!"
}, {
content: "Send the feedback",
trigger: "input[type='button'].o_rating_submit_button",
}, {
content: "Check if feedback has been sent",
trigger: "div.o_thread_window_header.feedback_sent",
}, {
content: "Thanks for your feedback",
trigger: "div.o_livechat_rating_box:has(div:contains('Thank you for your feedback'))",
}];
var transcriptStep = [{
content: "Type your email",
trigger: "input[id='o_email']",
run: "text deboul@onner.com"
}, {
content: "Send the conversation to your email address",
trigger: "button.o_email_chat_button",
}, {
content: "Type your email",
trigger: "div.o_livechat_email:has(strong:contains('Conversation Sent'))",
}];
var closeStep = [{
content: "Close the conversation with the x button",
trigger: "a.o_thread_window_close",
}, {
content: "Check that the chat window is closed",
trigger: 'body',
run: function () {
if ($('div.o_livechat_button').length === 1 && !$('div.o_livechat_button').is(':visible')) {
$('body').addClass('tour_success');
}
}
}, {
content: "Is the Test succeded ?",
trigger: 'body.tour_success'
}];
var goodRatingStep = [{
content: "Send Good Rating",
trigger: "div.o_livechat_rating_choices > img[data-value=5]",
}, {
content: "Check if feedback has been sent",
trigger: "div.o_thread_window_header.feedback_sent",
}, {
content: "Thanks for your feedback",
trigger: "div.o_livechat_rating_box:has(div:contains('Thank you for your feedback'))"
}];
var okRatingStep = [{
content: "Send ok Rating",
trigger: "div.o_livechat_rating_choices > img[data-value=3]",
}];
var sadRatingStep = [{
content: "Send bad Rating",
trigger: "div.o_livechat_rating_choices > img[data-value=1]",
}];
return {
'startStep': startStep,
'endDiscussionStep': endDiscussionStep,
'transcriptStep': transcriptStep,
'feedbackStep': feedbackStep,
'closeStep': closeStep,
'goodRatingStep': goodRatingStep,
'okRatingStep': okRatingStep,
'sadRatingStep': sadRatingStep,
};
});
|