Ifd_Automation 2.8.2 → 2.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/documentation_generator.rb +0 -0
- data/bin/generate.rb +0 -6
- data/bin/helper.rb +0 -0
- data/lib/Ifd_Automation.rb +1 -0
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/REST_steps.rb +0 -0
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/SOAP_steps.rb +0 -0
- data/lib/Ifd_Automation/all_steps.rb +0 -0
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/database_steps.rb +1 -1
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/dynamic_store_value_steps.rb +0 -0
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/email_steps.rb +0 -0
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/file_steps.rb +0 -0
- data/lib/Ifd_Automation/require_libs.rb +0 -0
- data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/ssh_steps.rb +0 -0
- data/lib/Ifd_Automation/version.rb +1 -1
- data/lib/Ifd_Automation/web_steps.rb +109 -0
- data/lib/helper/assertion_helper.rb +0 -0
- data/lib/helper/auto_util.rb +0 -0
- data/lib/helper/database_helper.rb +0 -0
- data/lib/helper/file_helper.rb +0 -0
- data/lib/helper/mail_helper.rb +0 -0
- data/lib/helper/rest_helper.rb +0 -0
- data/lib/helper/soap_helper.rb +0 -0
- data/lib/helper/ssh_helper.rb +1 -1
- data/lib/helper/step_fallback.rb +13 -0
- data/lib/helper/tolerance_for_selenium_sync_issues.rb +72 -0
- data/lib/helper/web_steps_helper.rb +539 -325
- data/project/Gemfile +0 -0
- data/project/README.md +5 -21
- data/project/cucumber.yml +3 -3
- data/project/features/TestData/globalData.yml +0 -0
- data/project/features/TestSuite/WebGUI.feature +3 -4
- data/project/features/step_definitions/lib_steps/steps_definition.rb +3 -0
- data/project/features/step_definitions/repositories/project_object.yml +1 -2
- data/project/features/support/env.rb +30 -100
- data/project/features/support/hooks.rb +4 -4
- data/project/features/support/project_config.rb +13 -0
- metadata +30 -23
- data/project/Dockerfile +0 -20
- data/project/docker-compose.yml +0 -7
- data/project/features/Screenshot/sample.jpg +0 -0
- data/project/features/step_definitions/IFD_Libraries/web_steps.rb +0 -98
- data/project/features/step_definitions/lib_steps/actionwords.rb +0 -9
- data/project/features/step_definitions/lib_steps/steps.rb +0 -6
@@ -1,9 +0,0 @@
|
|
1
|
-
module Actionwords
|
2
|
-
|
3
|
-
def login_to_system
|
4
|
-
step %{I am on the "params='login_page'" page}
|
5
|
-
step %{I set text on "textbox_username" with "params='login_user'"}
|
6
|
-
step %{I set text on "textbox_password" with "params='login_pass'"}
|
7
|
-
step %{I click on "aa"}
|
8
|
-
end
|
9
|
-
end
|