-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* For #8 * Adds `findByAutoId`, `findInputByName`, `clickByAutoId`, * Change `const` to `let` in test files * `fillInByAutoId`, `fillInByName`
- Loading branch information
Showing
5 changed files
with
103 additions
and
16 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,10 @@ | |
<form class='node-4 post' id='post_1'> | ||
John Doe | ||
<label class='node-1' for='name'>Name</label> | ||
<input class='node-2' id='name' value='John Doe'> | ||
<input data-auto-id='node-2-input' class='node-2' id='name' value='John Doe' name='node-2-input'> | ||
<label class='node-3' for='email'>Email</label> | ||
<input class='node-5' id='email' value='[email protected]'> | ||
<button {{action "buttonClicked" "First target button clicked"}}>First Target Button</button> | ||
<button data-auto-id="first-target-btn" {{action "buttonClicked" "First target button clicked"}}>First Target Button</button> | ||
</form> | ||
|
||
<form class='node-6 post' id='post_2'> | ||
|