Skip to content

Commit

Permalink
EY practitioner personal details
Browse files Browse the repository at this point in the history
  • Loading branch information
alkesh committed Sep 26, 2024
1 parent 36e7d73 commit 9126d99
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class SlugSequence
one-login-sign-in
how-we-use-your-information
personal-details
enter-home-address
].freeze

def self.start_page_url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,14 @@
expect(page.title).to have_text("How we’ll use the information you provide")
expect(page).to have_content("How we’ll use the information you provide")
click_on "Continue"

expect(page).to have_content("Personal details")
fill_in "First name", with: "John"
fill_in "Last name", with: "Doe"
fill_in "Day", with: "28"
fill_in "Month", with: "2"
fill_in "Year", with: "1988"
fill_in "National Insurance number", with: "PX321499A"
click_on "Continue"
end
end

0 comments on commit 9126d99

Please sign in to comment.