Repository: couchdb-fauxton Updated Branches: refs/heads/master 8b7f7e3a4 -> 30f65771d
tests: try to stabilize PR: #422 PR-URL: https://github.com/apache/couchdb-fauxton/pull/422 Reviewed-By: Benjamin Keen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/30f65771 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/30f65771 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/30f65771 Branch: refs/heads/master Commit: 30f65771d827c67610b36ad73218138a31303d5f Parents: 2a38fbd Author: Robert Kowalski <[email protected]> Authored: Tue May 19 18:01:10 2015 +0200 Committer: Robert Kowalski <[email protected]> Committed: Tue May 19 19:12:21 2015 +0200 ---------------------------------------------------------------------- app/addons/databases/tests/nightwatch/deletesDatabase.js | 2 +- .../databases/tests/nightwatch/deletesDatabaseSpecialChars.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/30f65771/app/addons/databases/tests/nightwatch/deletesDatabase.js ---------------------------------------------------------------------- diff --git a/app/addons/databases/tests/nightwatch/deletesDatabase.js b/app/addons/databases/tests/nightwatch/deletesDatabase.js index 7e2d2fa..75ea8ee 100644 --- a/app/addons/databases/tests/nightwatch/deletesDatabase.js +++ b/app/addons/databases/tests/nightwatch/deletesDatabase.js @@ -26,7 +26,7 @@ module.exports = { .clickWhenVisible('#header-dropdown-menu .fonticon-trash', waitTime, false) .waitForElementVisible('#db-name', waitTime, false) .clickWhenVisible('#db-name', waitTime, false) - .setValue('input#db-name', [newDatabaseName, client.Keys.ENTER] ) + .setValue('#db-name', [newDatabaseName, client.Keys.ENTER]) .waitForElementVisible('#global-notifications .alert.alert-info', waitTime, false) .url(baseUrl + '/_all_dbs') .waitForElementPresent('pre', waitTime, false) http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/30f65771/app/addons/databases/tests/nightwatch/deletesDatabaseSpecialChars.js ---------------------------------------------------------------------- diff --git a/app/addons/databases/tests/nightwatch/deletesDatabaseSpecialChars.js b/app/addons/databases/tests/nightwatch/deletesDatabaseSpecialChars.js index 61f0535..61b7c37 100644 --- a/app/addons/databases/tests/nightwatch/deletesDatabaseSpecialChars.js +++ b/app/addons/databases/tests/nightwatch/deletesDatabaseSpecialChars.js @@ -26,7 +26,7 @@ module.exports = { .clickWhenVisible('#header-dropdown-menu .fonticon-trash', waitTime, false) .waitForElementPresent('#db-name', waitTime, false) .clickWhenVisible('#db-name', waitTime, false) - .setValue('input#db-name', [newDatabaseName, client.Keys.ENTER]) + .setValue('#db-name', [newDatabaseName, client.Keys.ENTER]) .waitForElementVisible('#global-notifications .alert.alert-info', waitTime, false) .url(baseUrl + '/_all_dbs') .waitForElementPresent('pre', waitTime, false)
