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 'plugins/CustomDimensions')
-rw-r--r--plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js b/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
index b0ce39ee23..8aacff253d 100644
--- a/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
+++ b/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
@@ -175,9 +175,9 @@ describe("CustomDimensions", function () {
await page.goto(reportUrlDimension3);
await (await page.jQuery('.dataTable .subDataTable .value:contains(en):first')).click();
await page.waitForNetworkIdle();
- await page.waitForTimeout(100);
- await (await page.jQuery('td.label:contains(en_US)')).hover();
- await page.waitForTimeout(100);
+ await page.waitForTimeout(200);
+ await (await page.jQuery('td.label:contains(en_US):visible')).hover();
+ await page.waitForTimeout(200);
await triggerRowAction('en_US', 'actionTransitions');
});
});