Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Live_spec.js « UI « tests « Live « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 624ac5f468e57b3d3db3b0a082adc82e78643db0 (plain)
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
/*!
 * Piwik - free/libre analytics platform
 *
 * Screenshot integration tests.
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 */

describe("Live", function () {
    this.timeout(0);

    this.fixture = "Piwik\\Plugins\\Live\\tests\\Fixtures\\VisitsWithAllActionsAndDevices";

    it('should show visitor log', function (done) {
        expect.screenshot('visitor_log').to.be.captureSelector('.reporting-page', function (page) {
            page.load("?module=CoreHome&action=index&idSite=1&period=year&date=2010-01-03#?idSite=1&period=year&date=2010-01-03&category=General_Visitors&subcategory=Live_VisitorLog");
            page.wait(4000);
        }, done);
    });

    it('should show visitor profile', function (done) {
        expect.screenshot('visitor_profile').to.be.captureSelector('.ui-dialog', function (page) {
            page.evaluate(function(){
                $('.card:first-child .visitor-log-visitor-profile-link').click();
            });
            page.wait(6000);
        }, done);
    });

    it('should hide all action details', function (done) {
        expect.screenshot('visitor_profile_actions_hidden').to.be.captureSelector('.ui-dialog', function (page) {
            page.evaluate(function(){
                $('.visitor-profile-toggle-actions').click();
            }, 500);
        }, done);
    });

    it('should show visit details', function (done) {
        expect.screenshot('visitor_profile_visit_details').to.be.captureSelector('.ui-dialog', function (page) {
            page.evaluate(function(){
                $('.visitor-profile-visit-title')[0].click();
            }, 200);
        }, done);
    });

    it('should show action details', function (done) {
        expect.screenshot('visitor_profile_action_details').to.be.captureSelector('.ui-dialog', function (page) {
            page.click('.visitor-profile-visits li:first-child .visitor-profile-show-actions', 200);
        }, done);
    });

    it('should show action tooltip', function (done) {
        expect.screenshot('visitor_profile_action_tooltip').to.be.captureSelector('.ui-tooltip:visible', function (page) {
            page.mouseMove('.visitor-profile-visits li:first-child .visitor-profile-actions .action:first-child', 200);
        }, done);
    });
});