18 lines
550 B
Ruby
18 lines
550 B
Ruby
# Feature: Home page
|
|
# As a visitor
|
|
# I want to visit a home page
|
|
# So I can learn more about the website
|
|
feature 'Home page' do
|
|
# Scenario: Visit the home page
|
|
# Given I am a visitor
|
|
# When I visit the home page
|
|
# Then I see the main menu
|
|
scenario 'visit the home page', js: true do
|
|
visit root_path
|
|
page.save_screenshot('screenshot-' + Time.now.strftime("%Y-%m-%d %H%M") + '.png')
|
|
expect(page).to have_link 'Play Now'
|
|
expect(page).to have_link 'Browse Tables'
|
|
expect(page).to have_link 'Tutorial'
|
|
end
|
|
end
|