Merge pull request #6913 from mozilla/i6900

fix(tests): fix tests for latest geckodriver compat
This commit is contained in:
Vlad Filippov 2019-01-31 08:13:54 -05:00 коммит произвёл GitHub
Родитель cfbdbd7abf e70b65d18f
Коммит 6ac63587a4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -43,7 +43,7 @@ registerSuite('password visibility', {
.then(mouseup('.show-password-label'))
.then(testAttributeEquals('#password', 'type', 'password'))
.then(testAttributeEquals('#password', 'autocomplete', null))
.then(testAttributeEquals('#password', 'autocomplete', ''))
// \u0008 is unicode for backspace char. By default `type` clears the
// element value before typing, we want the character to do so.

Просмотреть файл

@ -158,7 +158,7 @@ registerSuite('Firefox Desktop Sync sign_up', {
return this.remote
.then(openPage(url, selectors.SIGNUP.HEADER))
.then(testAttributeEquals(selectors.SIGNUP.CUSTOMIZE_SYNC_CHECKBOX, 'checked', 'checked'));
.then(testAttributeEquals(selectors.SIGNUP.CUSTOMIZE_SYNC_CHECKBOX, 'checked', 'true'));
}
}
});