From cb204155dcba2f4be13877f31ad312bed1779782 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Fri, 18 Sep 2015 16:01:40 +0200 Subject: [PATCH] try to fix selenium FP --- server/sonar-web/test/helpers/test-page.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/sonar-web/test/helpers/test-page.js b/server/sonar-web/test/helpers/test-page.js index 1679f4d1733..aaa5e5b56dd 100644 --- a/server/sonar-web/test/helpers/test-page.js +++ b/server/sonar-web/test/helpers/test-page.js @@ -93,6 +93,8 @@ define(function (require) { Command.prototype.clickElement = function (selector) { return new this.constructor(this, function () { return this.parent + .checkElementExist(selector) + .sleep(250) .findByCssSelector(selector) .click() .end() -- 2.39.5