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 3337873 commit 0c58ca2Copy full SHA for 0c58ca2
features/environment.py
@@ -7,7 +7,7 @@
7
8
WAIT_SECONDS = int(getenv("WAIT_SECONDS", "30"))
9
BASE_URL = getenv("BASE_URL", "http://localhost:8080")
10
-DRIVER = getenv("DRIVER", "firefox").lower()
+DRIVER = getenv("DRIVER", "chrome").lower()
11
12
13
def before_all(context):
features/pets.feature
@@ -22,7 +22,7 @@ Scenario: Create a Pet
22
And I set the "Category" to "Hippo"
23
And I select "False" in the "Available" dropdown
24
And I select "Male" in the "Gender" dropdown
25
- And I set the "Birthday" to "2022-06-16"
+ And I set the "Birthday" to "06-16-2022"
26
And I press the "Create" button
27
Then I should see the message "Success"
28
When I copy the "Id" field
0 commit comments