Created
July 7, 2022 05:03
-
-
Save SarahElson/1499a219db1aa337f7ca5178e74425fe to your computer and use it in GitHub Desktop.
How To Implement Data Tables In Cucumber Using Selenium Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/step_definistions/ecommerce_steps.rb | |
Given(/^Ecommerce webpage Login Page loads$/) do | |
$browser.goto "https://ecommerce-playground.lambdatest.io/index.php?route=account/login" | |
$user_session = LoginPage.new | |
end | |
Then(/^Ecommerce Login Link is present loaded$/) do | |
assert($user_session.username_textbox.name, "email") | |
assert($user_session.password_textbox.name, "password") | |
end | |
Then(/^Correct Username and Password Should Login Successfully (.*) (.*)$/) do |username, password| | |
puts "------" | |
puts username | |
$user_session.username_textbox.send_keys(username) | |
sleep(3) | |
$user_session.password_textbox.send_keys(password) | |
sleep(3) | |
$user_session.login_button.click | |
end | |
And(/^My Account page should display after login$/) do | |
assert($user_session.account_header.name, "My Account") | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment