Created
June 14, 2022 08:21
-
-
Save rodrigojmartin/79a28852499387a17c04203510504fe9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { by, Target } from '@serenity-js/webdriverio'; | |
export class TodoMVCApp { | |
static newTodoField = Target.the('new todo field').located(by.css('.new-todo')); | |
static recordedItems = Target.all('recorded items').located(by.css('.todo-list li')); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment