signup.feature 788 Bytes
Newer Older
1
@shard_2
2
Feature: LMS.Sign in
3 4 5 6
  In order to use the edX content
  As a new user
  I want to signup for a student account

7
  # firefox will not redirect properly
8
  @skip_firefox
9 10
  Scenario: Sign up from the homepage
    Given I visit the homepage
11
    When I click the link with the text "Register Now"
12 13 14 15 16 17
    And I fill in "email" on the registration form with "robot2@edx.org"
    And I fill in "password" on the registration form with "test"
    And I fill in "username" on the registration form with "robot2"
    And I fill in "name" on the registration form with "Robot Two"
    And I check the checkbox named "terms_of_service"
    And I check the checkbox named "honor_code"
18
    And I submit the registration form
19
    Then I should see "THANKS FOR REGISTERING!" in the dashboard banner