-
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.
feat!: rename
act/verify
to do/check
- Loading branch information
Showing
7 changed files
with
29 additions
and
29 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
def test_drag_and_drop(al, driver): | ||
driver.get("https://the-internet.herokuapp.com/drag_and_drop") | ||
al.verify("square A is positioned to the left from square B", vision=True) | ||
al.act("move square A to square B") | ||
al.verify("square B is positioned to the left from square A", vision=True) | ||
al.check("square A is positioned to the left from square B", vision=True) | ||
al.do("move square A to square B") | ||
al.check("square B is positioned to the left from square A", vision=True) |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
def test_select_option(al, driver): | ||
driver.get("https://the-internet.herokuapp.com/dropdown") | ||
al.verify("no option is selected") | ||
al.act("select Option 1") | ||
al.verify("Option 1 is selected") | ||
al.check("no option is selected") | ||
al.do("select Option 1") | ||
al.check("Option 1 is selected") |