Untitled

mail@pastecode.io avatarunknown
plain_text
a month ago
472 B
2
Indexable
Never
Feature: Update user profile

  Background: Logged in and choose View Profile
    Given I am logged in
    
  @update-profile
  Scenario: Update user information successfully
      When I click choose "View profile"
      And I update my profile with "<firstName>" and "<lastName>"
      And I click "Save" button
      Then I should see the information updated successfully

      Examples:
        | firstName | lastName | 
        | Ha777     | Tran777  |