You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example shows how BDD approach is implemented in testing. In this example used scenario described in features:
Feature: Log InScenario: Create userThen open "sign-up" page
Then Click "Start Learning" button
Then Input email
Then Input first name
Then Input last name
Then Input password
Then Click "Start Learning" button span
Then Content "Start Teaching" button visible
Then Check firstName field
Then Check lastName field
Scenario: Create user by ApiThen Create user by api
Then Login user by api
Following the "Create user" scenario, the process of registering a new user is checked via the graphical interface. This test uses "PageObject" pattern. A page is an object that the program works with.