Ifd_Automation 2.8.2 → 2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/bin/documentation_generator.rb +0 -0
  3. data/bin/generate.rb +0 -6
  4. data/bin/helper.rb +0 -0
  5. data/lib/Ifd_Automation.rb +1 -0
  6. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/REST_steps.rb +0 -0
  7. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/SOAP_steps.rb +0 -0
  8. data/lib/Ifd_Automation/all_steps.rb +0 -0
  9. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/database_steps.rb +1 -1
  10. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/dynamic_store_value_steps.rb +0 -0
  11. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/email_steps.rb +0 -0
  12. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/file_steps.rb +0 -0
  13. data/lib/Ifd_Automation/require_libs.rb +0 -0
  14. data/{project/features/step_definitions/IFD_Libraries → lib/Ifd_Automation}/ssh_steps.rb +0 -0
  15. data/lib/Ifd_Automation/version.rb +1 -1
  16. data/lib/Ifd_Automation/web_steps.rb +109 -0
  17. data/lib/helper/assertion_helper.rb +0 -0
  18. data/lib/helper/auto_util.rb +0 -0
  19. data/lib/helper/database_helper.rb +0 -0
  20. data/lib/helper/file_helper.rb +0 -0
  21. data/lib/helper/mail_helper.rb +0 -0
  22. data/lib/helper/rest_helper.rb +0 -0
  23. data/lib/helper/soap_helper.rb +0 -0
  24. data/lib/helper/ssh_helper.rb +1 -1
  25. data/lib/helper/step_fallback.rb +13 -0
  26. data/lib/helper/tolerance_for_selenium_sync_issues.rb +72 -0
  27. data/lib/helper/web_steps_helper.rb +539 -325
  28. data/project/Gemfile +0 -0
  29. data/project/README.md +5 -21
  30. data/project/cucumber.yml +3 -3
  31. data/project/features/TestData/globalData.yml +0 -0
  32. data/project/features/TestSuite/WebGUI.feature +3 -4
  33. data/project/features/step_definitions/lib_steps/steps_definition.rb +3 -0
  34. data/project/features/step_definitions/repositories/project_object.yml +1 -2
  35. data/project/features/support/env.rb +30 -100
  36. data/project/features/support/hooks.rb +4 -4
  37. data/project/features/support/project_config.rb +13 -0
  38. metadata +30 -23
  39. data/project/Dockerfile +0 -20
  40. data/project/docker-compose.yml +0 -7
  41. data/project/features/Screenshot/sample.jpg +0 -0
  42. data/project/features/step_definitions/IFD_Libraries/web_steps.rb +0 -98
  43. data/project/features/step_definitions/lib_steps/actionwords.rb +0 -9
  44. 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
@@ -1,6 +0,0 @@
1
- require_relative 'actionwords'
2
- World(Actionwords)
3
-
4
- Given /I log in to the system/ do
5
- login_to_system
6
- end