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:
authorPeter Zhang <peter@innocraft.com>2021-11-15 16:11:26 +0300
committerGitHub <noreply@github.com>2021-11-15 16:11:26 +0300
commit9db3daa0349a2a08a8a50b28537722a611c3868d (patch)
tree9881b726da2d9e4dccc9a1617f310031cab0cc01 /plugins/CustomDimensions
parent89cb577059ff4b7d850c316dd361a326ecb39f47 (diff)
Update Feedback Question banner (#18308)
* Update UIIntegration_spec.js update table random UI * update icon list update icon list * update screen shots update screen shots * Update FeedbackQuestion.less hide feedback on mobile * update feed back update feed back * Update FeedbackTest.php update feedback Test * Update UIIntegration_spec.js update UI screenshot Test * update UI tests update UI tests * update screenshots update screenshots
Diffstat (limited to 'plugins/CustomDimensions')
-rw-r--r--plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js b/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
index 329c32fda5..eb91123927 100644
--- a/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
+++ b/plugins/CustomDimensions/tests/UI/CustomDimensions_spec.js
@@ -147,6 +147,10 @@ describe("CustomDimensions", function () {
await page.goto(reportUrlDimension3);
await (await page.jQuery('.dataTable .subDataTable .value:contains(en):first')).click();
await page.waitForNetworkIdle();
+ await page.waitForTimeout(500);
+ await page.evaluate(() => { // give table headers constant width so the screenshot stays the same
+ $('.dataTableScroller').css('overflow-x', 'scroll');
+ });
await (await page.jQuery('td.label:contains(en_US)')).hover();
await page.waitForTimeout(100);
});
@@ -177,4 +181,4 @@ describe("CustomDimensions", function () {
await triggerRowAction('en_US', 'actionTransitions');
});
});
-}); \ No newline at end of file
+});