We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ec4772 commit 5236886Copy full SHA for 5236886
test/page-objects/app-page.js
@@ -15,12 +15,10 @@ AppPage.prototype.getTodoItems = function () {
15
* @param todo the todo Element
16
*/
17
AppPage.prototype.toggleTodo = function (todo) {
18
- // @todo https://github.com/groupon-testium/webdriver-http-sync doesn't implemented Element#getElement.
19
var input = todo.getElement('input[type="checkbox"]');
20
input.click();
21
};
22
AppPage.prototype.removeTodo = function (todo) {
23
24
var input = todo.getElement('.removeBtn');
25
26
0 commit comments