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:
authormattab <matthieu.aubry@gmail.com>2015-12-04 08:12:15 +0300
committermattab <matthieu.aubry@gmail.com>2015-12-04 08:13:07 +0300
commit24839681ebba4d8cd021009b7261f459b91cca87 (patch)
treef1ab2441cbd71f5474ba3795d0902075b0d97458
parente584f1c7221ab81a89cf36daa6347b914146cea5 (diff)
Fix one UI test drag and drop: use visible field
-rw-r--r--tests/UI/specs/SegmentSelectorEditor_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/UI/specs/SegmentSelectorEditor_spec.js b/tests/UI/specs/SegmentSelectorEditor_spec.js
index f936162841..c28c9e6cb4 100644
--- a/tests/UI/specs/SegmentSelectorEditor_spec.js
+++ b/tests/UI/specs/SegmentSelectorEditor_spec.js
@@ -73,7 +73,7 @@ describe("SegmentSelectorEditorTest", function () {
it("should add new segment expression when segment dimension drag dropped", function (done) {
expect.screenshot("dimension_drag_drop").to.be.captureSelector(selectorsToCapture, function (page) {
page.click('.segmentEditorPanel .metric_category:contains(Actions)');
- page.dragDrop('.segmentEditorPanel li[data-metric=entryPageUrl]', '.segmentEditorPanel .ui-droppable');
+ page.dragDrop('.segmentEditorPanel li[data-metric=actionUrl]', '.segmentEditorPanel .ui-droppable');
}, done);
});