Skip to content

Commit

Permalink
Fixed selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed Feb 2, 2024
1 parent 9c224b1 commit 52eb535
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class TodoListPage extends PageObject {
private static final String NEW_TODO_INPUT_FIELD = ".new-todo";
private static final String ITEM_ROW = "//div[@class='view' and contains(.,'%s')]";
private static final String ITEM_ROW_LABEL = "//label[contains(.,'%s')]";
private static final String COMPLETE_TICKBOX = ".//input[@ng-model='todo.completed']";
private static final String COMPLETE_TICKBOX = ".//input[@type='checkbox']";
private static final String DELETE_BUTTON = "//button[@class='destroy']";
private static final String FILTERS = ".filters";
private static final String SELECTED_FILTER = ".filters li .selected";
Expand Down

0 comments on commit 52eb535

Please sign in to comment.