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/QuickAccess_spec.js')
-rw-r--r--tests/UI/specs/QuickAccess_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/UI/specs/QuickAccess_spec.js b/tests/UI/specs/QuickAccess_spec.js
index 75879d2729..52a37e4c58 100644
--- a/tests/UI/specs/QuickAccess_spec.js
+++ b/tests/UI/specs/QuickAccess_spec.js
@@ -8,7 +8,7 @@
*/
describe("QuickAccess", function () {
- var selectorToCapture = "#search,.quick-access";
+ var selectorToCapture = ".quick-access,.quick-access .dropdown";
this.timeout(0);
@@ -16,7 +16,7 @@ describe("QuickAccess", function () {
function enterSearchTerm(page, searchTermToAdd)
{
- page.sendKeys("#search input", searchTermToAdd);
+ page.sendKeys(".quick-access input", searchTermToAdd);
}
function captureSelector(screenshotName, done, selector, callback)