
Untitled
By: a guest on
May 5th, 2012 | syntax:
None | size: 0.99 KB | hits: 8 | expires: Never
require File.expand_path('../../../../../includes', File.dirname(__FILE__))
Scenario "Enrolling to ScoreSense" do
Background "A user has never enrolled" do
Use ConfiguredUser
Clear Enrollment
end
And "they have completed Form 1" do
Start ConfiguredBrowser With SecureScoreSenseUrl
Complete RootSite Form1
end
And "they have completed Form 2" do
Complete RootSite Form2
end
Given "a user is on the Thank You page" do
Should Show RootSite ThankYouPage
end
#-------------------------------------------------------------------------------
When "the user clicks continue" do
Click :continue
end
Then "it should redirect to Product Fulfillment" do
Should Transition To ScoreSenseMembersUrl
end
And "it should show the L3 Page" do
Should Show RootSite L3
end
#-------------------------------------------------------------------------------
Finally "close the browser" do
Exit Browser
end
end