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
|
odoo.define('website_links.website_links_tour', function (require) {
'use strict';
var tour = require("web_tour.tour");
tour.register('website_links_tour', {
test: true,
url: '/r',
},
[
// 1. Create a tracked URL
{
content: "check that existing links are shown",
trigger: '#o_website_links_recent_links .btn_shorten_url_clipboard',
run: function () {}, // it's a check
},
{
content: "fill the form and submit it",
trigger: '#o_website_links_link_tracker_form input#url',
run: function () {
var url = window.location.host + '/contactus';
$('#o_website_links_link_tracker_form input#url').val(url);
$('.o_website_links_utm_forms input#campaign-select').val(1).change();
$('.o_website_links_utm_forms input#channel-select').val(1).change();
$('.o_website_links_utm_forms input#source-select').val(1).change();
$('#btn_shorten_url').click();
},
},
// 2. Visit it
{
content: "check that link was created and visit it",
extra_trigger: '#o_website_links_recent_links .truncate_text:first():contains("Contact Us")',
trigger: '#o_website_links_link_tracker_form #generated_tracked_link:contains("/r/")',
run: function () {
window.location.href = $('#generated_tracked_link').text();
},
},
{
content: "check that we landed on correct page with correct query strings",
trigger: '.s_title h1:containsExact("Contact us")',
run: function () {
var expectedUrl = "/contactus?utm_campaign=Sale&utm_source=Search+engine&utm_medium=Website";
if (window.location.pathname + window.location.search !== expectedUrl) {
console.error("The link was not correctly created.");
}
window.location.href = '/r';
},
},
// 3. Check that counter got incremented and charts are correctly displayed
{
content: "filter recently used links",
trigger: '#filter-recently-used-links',
},
{
content: "visit link stats page",
trigger: '#o_website_links_recent_links a:containsExact("Stats"):first',
},
{
content: "check click number and ensure graphs are initialized",
extra_trigger: '.website_links_click_chart .title:contains("1 clicks")',
trigger: 'canvas',
run: function () {}, // it's a check
},
{
content: "click on Last Month tab",
trigger: '.o_website_links_chart .graph-tabs a:contains("Last Month")',
},
{
content: "ensure tab is correctly resized",
trigger: '#last_month_charts #last_month_clicks_chart',
run: function () {
var width = $('#last_month_charts #last_month_clicks_chart').width();
if (width < 50) {
console.error("The graphs are probably not resized on tab change.");
}
},
},
]
);
});
|