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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/UI/specs/SegmentSelectorEditor_spec.js')
-rw-r--r--tests/UI/specs/SegmentSelectorEditor_spec.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/UI/specs/SegmentSelectorEditor_spec.js b/tests/UI/specs/SegmentSelectorEditor_spec.js
index 01066c3bbf..f00a9e87d5 100644
--- a/tests/UI/specs/SegmentSelectorEditor_spec.js
+++ b/tests/UI/specs/SegmentSelectorEditor_spec.js
@@ -12,7 +12,8 @@ describe("SegmentSelectorEditorTest", function () {
this.timeout(0);
- var url = "?module=CoreHome&action=index&idSite=1&period=year&date=2012-08-09";
+ var generalParams = 'idSite=1&period=year&date=2012-08-09';
+ var url = '?module=CoreHome&action=index&' + generalParams + '#?' + generalParams + '&category=General_Actions&subcategory=General_Pages';
it("should load correctly", function (done) {
expect.screenshot("0_initial").to.be.captureSelector(selectorsToCapture, function (page) {
@@ -149,7 +150,9 @@ describe("SegmentSelectorEditorTest", function () {
});
});
- page.click('button.saveAndApply');
+ page.evaluate(function () {
+ $('button.saveAndApply').click();
+ });
page.click('.segmentationContainer');
}, done);