SimpliTest 0.0.1
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.
- checksums.yaml +7 -0
- data/README.md +22 -0
- data/SimpliTest.gemspec +42 -0
- data/bin/SimpliTest +22 -0
- data/lib/SimpliTest.rb +2 -0
- data/lib/SimpliTest/cli/main.rb +305 -0
- data/lib/SimpliTest/config/configuration.rb +107 -0
- data/lib/SimpliTest/config/directory_paths.rb +36 -0
- data/lib/SimpliTest/config/environment.rb +67 -0
- data/lib/SimpliTest/config/local_environment.rb +20 -0
- data/lib/SimpliTest/config/profiles/chrome.rb +18 -0
- data/lib/SimpliTest/config/profiles/firefox.rb +14 -0
- data/lib/SimpliTest/config/profiles/internet_explorer.rb +12 -0
- data/lib/SimpliTest/config/profiles/phantom.rb +9 -0
- data/lib/SimpliTest/config/profiles/phantom_debug.rb +12 -0
- data/lib/SimpliTest/config/profiles/selenium.rb +13 -0
- data/lib/SimpliTest/config/screen_size.rb +25 -0
- data/lib/SimpliTest/config/steps.rb +8 -0
- data/lib/SimpliTest/helpers/data_validation.rb +60 -0
- data/lib/SimpliTest/helpers/file.rb +38 -0
- data/lib/SimpliTest/helpers/project_setup.rb +186 -0
- data/lib/SimpliTest/helpers/step_helpers/custom_chrome_helpers.rb +14 -0
- data/lib/SimpliTest/helpers/step_helpers/custom_date_helpers.rb +64 -0
- data/lib/SimpliTest/helpers/step_helpers/custom_form_helpers.rb +66 -0
- data/lib/SimpliTest/helpers/step_helpers/custom_phantomjs_helpers.rb +49 -0
- data/lib/SimpliTest/helpers/step_helpers/custom_selenium_helpers.rb +41 -0
- data/lib/SimpliTest/helpers/step_helpers/html_selectors_helpers.rb +154 -0
- data/lib/SimpliTest/helpers/step_helpers/navigation_helpers.rb +196 -0
- data/lib/SimpliTest/helpers/step_helpers/tolerance_for_sync_issues.rb +38 -0
- data/lib/SimpliTest/helpers/step_helpers/within_helpers.rb +6 -0
- data/lib/SimpliTest/helpers/windows_ui.rb +52 -0
- data/lib/SimpliTest/steps/debugging_steps.rb +19 -0
- data/lib/SimpliTest/steps/form_steps.rb +352 -0
- data/lib/SimpliTest/steps/form_verification_steps.rb +190 -0
- data/lib/SimpliTest/steps/navigation_steps.rb +47 -0
- data/lib/SimpliTest/steps/scoper.rb +42 -0
- data/lib/SimpliTest/steps/verification_steps.rb +306 -0
- data/lib/SimpliTest/tasks/document.rb +169 -0
- data/lib/SimpliTest/tasks/examples.rb +18 -0
- data/lib/SimpliTest/tasks/internal_release.rb +39 -0
- data/lib/SimpliTest/tasks/testinstall.rb +5 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/Readme.txt +5 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/cucumber.yml +26 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/documentation/step_definitions.html +87 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/specifications/RegressionTests/HelloWorld.feature +4 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/specifications/SmokeTest/HelloWorld.feature +4 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/specifications/accessibilityTests/HelloWorld.feature +4 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/environments.yml +11 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/pages.yml +26 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/selectors.yml +44 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/settings.yml +26 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/features/support/env.rb +33 -0
- data/lib/SimpliTest/templates/NewSimpliTestProject/license.txt +30 -0
- data/lib/SimpliTest/templates/document/css/style.css +28 -0
- data/lib/SimpliTest/templates/document/index.html +60 -0
- data/lib/version.rb +3 -0
- metadata +395 -0
| @@ -0,0 +1,26 @@ | |
| 1 | 
            +
            # This file is used to manage some global settings for your test project.
         | 
| 2 | 
            +
            # This file must be valid YAML
         | 
| 3 | 
            +
            # You can read about YAML syntax here: http://www.ansibleworks.com/docs/YAMLSyntax.html
         | 
| 4 | 
            +
            # This YAML checker may come in handy too: http://yamllint.com/
         | 
| 5 | 
            +
            # *********************************************************************************************
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ---
         | 
| 8 | 
            +
            DEFAULT_DATE_FORMAT: mm/dd/yyyy # Supports any combination of mm, dd, yyyy or yy Set a default format for date helpers to be used in expressions like "Today's Date" in the framework..
         | 
| 9 | 
            +
            DEFAULT_ENVIRONMENT: Production #The default environment tests will be run against when none is supplied
         | 
| 10 | 
            +
            MAX_WAIT_TIME: 2  #seconds. When a test fails because of a potential issue with DOM loading, the framework will retry running the test for this much time. If your application is slow, feel free to increase this time and see if it reduces failures.
         | 
| 11 | 
            +
            MIN_WAIT_TIME: 0  #seconds. Used when validating absence of a DOM element, typically this is shorter than the default wait time, since we don't want to wait too long for elements we are not expecting will be present
         | 
| 12 | 
            +
            HTTP_TIMEOUT: 3 # this is the default number of seconds SimpliTest will wait for either a connection to be open or to receive a valid http response, when using the "all links on this page are valid" step. This does not apply to other HTTP requests within SimpliTest, but that might change in the future.
         | 
| 13 | 
            +
            WAIT_FOR_PAGE_LOAD: 0 #seconds. Wait for so many seconds everytime a new page is loaded
         | 
| 14 | 
            +
            SCREEN_SIZE: Desktop # also accepts values like Tablet, Mobile and Landscape
         | 
| 15 | 
            +
            DRIVER: chrome #change this to phantomjs to run in headless mode, other options include: chrome, phantomjs, ie, selenium
         | 
| 16 | 
            +
            MODE: REGULAR #change this to DEBUG to see detailed console output
         | 
| 17 | 
            +
            DESKTOP_MAX_HEIGHT: 980
         | 
| 18 | 
            +
            DESKTOP_MAX_WIDTH: 2000
         | 
| 19 | 
            +
            MOBILE_MAX_HEIGHT: 868
         | 
| 20 | 
            +
            MOBILE_MAX_WIDTH: 362
         | 
| 21 | 
            +
            TABLET_MAX_HEIGHT: 868
         | 
| 22 | 
            +
            TABLET_MAX_WIDTH: 814
         | 
| 23 | 
            +
            LANDSCAPE_MAX_HEIGHT: 362
         | 
| 24 | 
            +
            LANDSCAPE_MAX_WIDTH: 522
         | 
| 25 | 
            +
            QUIT_ON_FAIL: false
         | 
| 26 | 
            +
             | 
| @@ -0,0 +1,33 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            *******************************************************************
         | 
| 3 | 
            +
            This file sets some very important configuration settings for the framework
         | 
| 4 | 
            +
            DO NOT DELETE THIS FILE
         | 
| 5 | 
            +
            Some options are configurable, but changing this file is not recommended
         | 
| 6 | 
            +
            It might cause all your tests to fail!!
         | 
| 7 | 
            +
            Unless you know what you are doing :)
         | 
| 8 | 
            +
            The defaults are shown below, you can customize any of these:
         | 
| 9 | 
            +
              configuration = {
         | 
| 10 | 
            +
                               :support_directory => 'path_to_your_project/features/support',
         | 
| 11 | 
            +
                               :environments_file => 'path_to_your_project/features/support/config/environments.yml',
         | 
| 12 | 
            +
                               :environments => {},
         | 
| 13 | 
            +
                               :environment => '',
         | 
| 14 | 
            +
                               :settings_file => 'path_to_your_project/features/support/config/settings.yml',
         | 
| 15 | 
            +
                               :settings => {},
         | 
| 16 | 
            +
                               :pages_file => 'path_to_your_project/features/support/config/pages.yml',
         | 
| 17 | 
            +
                               :pages => {},
         | 
| 18 | 
            +
                               :selectors_file => 'path_to_your_project/features/support/config/selectors.yml',
         | 
| 19 | 
            +
                               :selectors => {},
         | 
| 20 | 
            +
             | 
| 21 | 
            +
              }
         | 
| 22 | 
            +
            You only need to specify a file or a hash for each property. For example, you can specify either a 
         | 
| 23 | 
            +
            YAML file with a mapping of all paths to be used in your test suite or simply pass those paths as a hash here. 
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            IMPORTANT: configuration must be loaded before requiring SimpliTest/steps or this will not work!!
         | 
| 26 | 
            +
            ********************************************************************
         | 
| 27 | 
            +
            =end
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            require 'SimpliTest'
         | 
| 30 | 
            +
            SimpliTest.configure( {:support_directory => File.dirname(__FILE__)})
         | 
| 31 | 
            +
            require 'SimpliTest/config/environment'
         | 
| 32 | 
            +
             | 
| 33 | 
            +
             | 
| @@ -0,0 +1,30 @@ | |
| 1 | 
            +
            The MIT License (MIT)
         | 
| 2 | 
            +
            =====================
         | 
| 3 | 
            +
            Copyright © CGI FEDERAL
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            Permission is hereby granted, free of charge, to any person
         | 
| 6 | 
            +
            obtaining a copy of this software and associated documentation
         | 
| 7 | 
            +
            files (the “Software”), to deal in the Software without
         | 
| 8 | 
            +
            restriction, including without limitation the rights to use,
         | 
| 9 | 
            +
            copy, modify, merge, publish, distribute, sublicense, and/or sell
         | 
| 10 | 
            +
            copies of the Software, and to permit persons to whom the
         | 
| 11 | 
            +
            Software is furnished to do so, subject to the following
         | 
| 12 | 
            +
            conditions:
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            The above copyright notice and this permission notice shall be
         | 
| 15 | 
            +
            included in all copies or substantial portions of the Software.
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
         | 
| 18 | 
            +
            EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
         | 
| 19 | 
            +
            OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
         | 
| 20 | 
            +
            NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
         | 
| 21 | 
            +
            HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
         | 
| 22 | 
            +
            WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
         | 
| 23 | 
            +
            FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
         | 
| 24 | 
            +
            OTHER DEALINGS IN THE SOFTWARE.
         | 
| 25 | 
            +
             | 
| 26 | 
            +
            ====================================================================================
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            SimpliTest uses ax-matchers gem for accessibility testing. 
         | 
| 29 | 
            +
            http://www.deque.com/
         | 
| 30 | 
            +
            https://github.com/dequelabs/axe-core
         | 
| @@ -0,0 +1,28 @@ | |
| 1 | 
            +
            * { 
         | 
| 2 | 
            +
              margin: 0; 
         | 
| 3 | 
            +
              padding: 0; 
         | 
| 4 | 
            +
            }
         | 
| 5 | 
            +
            body { 
         | 
| 6 | 
            +
              font: 14px/1.4 Georgia, Serif; 
         | 
| 7 | 
            +
            }
         | 
| 8 | 
            +
            p {
         | 
| 9 | 
            +
              margin: 20px 0; 
         | 
| 10 | 
            +
            }
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            /* 
         | 
| 13 | 
            +
            Generic Styling, for Desktops/Laptops 
         | 
| 14 | 
            +
             */
         | 
| 15 | 
            +
              table { 
         | 
| 16 | 
            +
                width: 100%; 
         | 
| 17 | 
            +
                border-collapse: collapse; 
         | 
| 18 | 
            +
              }
         | 
| 19 | 
            +
              th { 
         | 
| 20 | 
            +
                background: #333; 
         | 
| 21 | 
            +
                color: white; 
         | 
| 22 | 
            +
                font-weight: bold; 
         | 
| 23 | 
            +
              }
         | 
| 24 | 
            +
              td, th { 
         | 
| 25 | 
            +
                padding: 6px; 
         | 
| 26 | 
            +
                border: 1px solid #ccc; 
         | 
| 27 | 
            +
                text-align: left; 
         | 
| 28 | 
            +
              }
         | 
| @@ -0,0 +1,60 @@ | |
| 1 | 
            +
            <!DOCTYPE html>
         | 
| 2 | 
            +
            <html>
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            <head>
         | 
| 5 | 
            +
            <meta charset='UTF-8'>
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            <title>SimpliTest Steps</title>
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
         | 
| 10 | 
            +
            <script type="text/javascript" charset="utf8" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.js"></script>
         | 
| 11 | 
            +
            <script type="text/javascript" charset="utf8" src="http://cdnjs.cloudflare.com/ajax/libs/datatables/1.9.4/jquery.dataTables.min.js"></script>
         | 
| 12 | 
            +
            <link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
         | 
| 13 | 
            +
            <script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
         | 
| 14 | 
            +
            <script>
         | 
| 15 | 
            +
            $(document).ready( function () {
         | 
| 16 | 
            +
              $('.dataTable').dataTable( {
         | 
| 17 | 
            +
                "bPaginate": false
         | 
| 18 | 
            +
              } );
         | 
| 19 | 
            +
            } );
         | 
| 20 | 
            +
            </script>
         | 
| 21 | 
            +
            <style>@css</style>
         | 
| 22 | 
            +
            </head>
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            <div class="container">
         | 
| 25 | 
            +
              <div class="row clearfix">
         | 
| 26 | 
            +
                <div class="col-md-12 column">
         | 
| 27 | 
            +
                  <div class="row clearfix">
         | 
| 28 | 
            +
                    <div class="col-md-12 column">
         | 
| 29 | 
            +
                      <div class="page-header">
         | 
| 30 | 
            +
                        <h1>
         | 
| 31 | 
            +
                          SimpliTest <span>Available Steps</span>
         | 
| 32 | 
            +
                        </h1>
         | 
| 33 | 
            +
                      </div>
         | 
| 34 | 
            +
                    </div>
         | 
| 35 | 
            +
                  </div>
         | 
| 36 | 
            +
                  <div class="row clearfix">
         | 
| 37 | 
            +
                    <div class="col-md-8 column">
         | 
| 38 | 
            +
                      <p>
         | 
| 39 | 
            +
                      Version: @version of SimpliTest adds the following steps to the framework. 
         | 
| 40 | 
            +
                      </p>
         | 
| 41 | 
            +
                    </div>
         | 
| 42 | 
            +
                    <div class="col-md-4 column">
         | 
| 43 | 
            +
                    </div>
         | 
| 44 | 
            +
                  </div>
         | 
| 45 | 
            +
                  <table class="dataTable table table-striped table-bordered">
         | 
| 46 | 
            +
                    <thead>
         | 
| 47 | 
            +
                      <tr>
         | 
| 48 | 
            +
                        @header_row
         | 
| 49 | 
            +
                      </tr>
         | 
| 50 | 
            +
                    </thead>
         | 
| 51 | 
            +
                    <tbody>
         | 
| 52 | 
            +
                    @table_body
         | 
| 53 | 
            +
                    </tbody>
         | 
| 54 | 
            +
                  </table>
         | 
| 55 | 
            +
                </div>
         | 
| 56 | 
            +
              </div>
         | 
| 57 | 
            +
            </div>
         | 
| 58 | 
            +
            </body>
         | 
| 59 | 
            +
             | 
| 60 | 
            +
            </html>
         | 
    
        data/lib/version.rb
    ADDED
    
    
    
        metadata
    ADDED
    
    | @@ -0,0 +1,395 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: SimpliTest
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.0.1
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - CGI Federal
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2017-09-11 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies:
         | 
| 13 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 14 | 
            +
              name: rubygems-update
         | 
| 15 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 | 
            +
                requirements:
         | 
| 17 | 
            +
                - - '='
         | 
| 18 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            +
                    version: 2.6.11
         | 
| 20 | 
            +
              type: :runtime
         | 
| 21 | 
            +
              prerelease: false
         | 
| 22 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 | 
            +
                requirements:
         | 
| 24 | 
            +
                - - '='
         | 
| 25 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            +
                    version: 2.6.11
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: unf_ext
         | 
| 29 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - '='
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: 0.0.7.2
         | 
| 34 | 
            +
              type: :runtime
         | 
| 35 | 
            +
              prerelease: false
         | 
| 36 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 | 
            +
                requirements:
         | 
| 38 | 
            +
                - - '='
         | 
| 39 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            +
                    version: 0.0.7.2
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: bundler
         | 
| 43 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - "~>"
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: '1.3'
         | 
| 48 | 
            +
              type: :development
         | 
| 49 | 
            +
              prerelease: false
         | 
| 50 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 | 
            +
                requirements:
         | 
| 52 | 
            +
                - - "~>"
         | 
| 53 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 54 | 
            +
                    version: '1.3'
         | 
| 55 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 56 | 
            +
              name: sinatra
         | 
| 57 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - "~>"
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
              type: :development
         | 
| 63 | 
            +
              prerelease: false
         | 
| 64 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                requirements:
         | 
| 66 | 
            +
                - - "~>"
         | 
| 67 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            +
                    version: '0'
         | 
| 69 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 70 | 
            +
              name: cucumber-sinatra
         | 
| 71 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 72 | 
            +
                requirements:
         | 
| 73 | 
            +
                - - "~>"
         | 
| 74 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 75 | 
            +
                    version: '0'
         | 
| 76 | 
            +
              type: :development
         | 
| 77 | 
            +
              prerelease: false
         | 
| 78 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 79 | 
            +
                requirements:
         | 
| 80 | 
            +
                - - "~>"
         | 
| 81 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 82 | 
            +
                    version: '0'
         | 
| 83 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 84 | 
            +
              name: rake-notes
         | 
| 85 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 86 | 
            +
                requirements:
         | 
| 87 | 
            +
                - - "~>"
         | 
| 88 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 89 | 
            +
                    version: '0'
         | 
| 90 | 
            +
              type: :development
         | 
| 91 | 
            +
              prerelease: false
         | 
| 92 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 93 | 
            +
                requirements:
         | 
| 94 | 
            +
                - - "~>"
         | 
| 95 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 96 | 
            +
                    version: '0'
         | 
| 97 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 98 | 
            +
              name: simplecov
         | 
| 99 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 100 | 
            +
                requirements:
         | 
| 101 | 
            +
                - - "~>"
         | 
| 102 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 103 | 
            +
                    version: '0'
         | 
| 104 | 
            +
              type: :development
         | 
| 105 | 
            +
              prerelease: false
         | 
| 106 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 107 | 
            +
                requirements:
         | 
| 108 | 
            +
                - - "~>"
         | 
| 109 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 110 | 
            +
                    version: '0'
         | 
| 111 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 112 | 
            +
              name: aruba
         | 
| 113 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 114 | 
            +
                requirements:
         | 
| 115 | 
            +
                - - "~>"
         | 
| 116 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 117 | 
            +
                    version: '0'
         | 
| 118 | 
            +
              type: :development
         | 
| 119 | 
            +
              prerelease: false
         | 
| 120 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 121 | 
            +
                requirements:
         | 
| 122 | 
            +
                - - "~>"
         | 
| 123 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 124 | 
            +
                    version: '0'
         | 
| 125 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 126 | 
            +
              name: hirb
         | 
| 127 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 128 | 
            +
                requirements:
         | 
| 129 | 
            +
                - - "~>"
         | 
| 130 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 131 | 
            +
                    version: '0'
         | 
| 132 | 
            +
              type: :development
         | 
| 133 | 
            +
              prerelease: false
         | 
| 134 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 135 | 
            +
                requirements:
         | 
| 136 | 
            +
                - - "~>"
         | 
| 137 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 138 | 
            +
                    version: '0'
         | 
| 139 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 140 | 
            +
              name: geminabox
         | 
| 141 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 142 | 
            +
                requirements:
         | 
| 143 | 
            +
                - - "~>"
         | 
| 144 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 145 | 
            +
                    version: '0'
         | 
| 146 | 
            +
              type: :development
         | 
| 147 | 
            +
              prerelease: false
         | 
| 148 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 149 | 
            +
                requirements:
         | 
| 150 | 
            +
                - - "~>"
         | 
| 151 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 152 | 
            +
                    version: '0'
         | 
| 153 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 154 | 
            +
              name: cucumber
         | 
| 155 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 156 | 
            +
                requirements:
         | 
| 157 | 
            +
                - - '='
         | 
| 158 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 159 | 
            +
                    version: 2.1.0
         | 
| 160 | 
            +
              type: :runtime
         | 
| 161 | 
            +
              prerelease: false
         | 
| 162 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 163 | 
            +
                requirements:
         | 
| 164 | 
            +
                - - '='
         | 
| 165 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 166 | 
            +
                    version: 2.1.0
         | 
| 167 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 168 | 
            +
              name: poltergeist
         | 
| 169 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 170 | 
            +
                requirements:
         | 
| 171 | 
            +
                - - '='
         | 
| 172 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 173 | 
            +
                    version: 1.7.0
         | 
| 174 | 
            +
              type: :runtime
         | 
| 175 | 
            +
              prerelease: false
         | 
| 176 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 177 | 
            +
                requirements:
         | 
| 178 | 
            +
                - - '='
         | 
| 179 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 180 | 
            +
                    version: 1.7.0
         | 
| 181 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 182 | 
            +
              name: capybara
         | 
| 183 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 184 | 
            +
                requirements:
         | 
| 185 | 
            +
                - - '='
         | 
| 186 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 187 | 
            +
                    version: 2.5.0
         | 
| 188 | 
            +
              type: :runtime
         | 
| 189 | 
            +
              prerelease: false
         | 
| 190 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 191 | 
            +
                requirements:
         | 
| 192 | 
            +
                - - '='
         | 
| 193 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 194 | 
            +
                    version: 2.5.0
         | 
| 195 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 196 | 
            +
              name: rspec
         | 
| 197 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 198 | 
            +
                requirements:
         | 
| 199 | 
            +
                - - '='
         | 
| 200 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 201 | 
            +
                    version: 3.3.0
         | 
| 202 | 
            +
              type: :runtime
         | 
| 203 | 
            +
              prerelease: false
         | 
| 204 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 205 | 
            +
                requirements:
         | 
| 206 | 
            +
                - - '='
         | 
| 207 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 208 | 
            +
                    version: 3.3.0
         | 
| 209 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 210 | 
            +
              name: selenium-webdriver
         | 
| 211 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 212 | 
            +
                requirements:
         | 
| 213 | 
            +
                - - '='
         | 
| 214 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 215 | 
            +
                    version: 3.2.1
         | 
| 216 | 
            +
              type: :runtime
         | 
| 217 | 
            +
              prerelease: false
         | 
| 218 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 219 | 
            +
                requirements:
         | 
| 220 | 
            +
                - - '='
         | 
| 221 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 222 | 
            +
                    version: 3.2.1
         | 
| 223 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 224 | 
            +
              name: launchy
         | 
| 225 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 226 | 
            +
                requirements:
         | 
| 227 | 
            +
                - - '='
         | 
| 228 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 229 | 
            +
                    version: 2.4.3
         | 
| 230 | 
            +
              type: :runtime
         | 
| 231 | 
            +
              prerelease: false
         | 
| 232 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 233 | 
            +
                requirements:
         | 
| 234 | 
            +
                - - '='
         | 
| 235 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 236 | 
            +
                    version: 2.4.3
         | 
| 237 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 238 | 
            +
              name: rake
         | 
| 239 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 240 | 
            +
                requirements:
         | 
| 241 | 
            +
                - - '='
         | 
| 242 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 243 | 
            +
                    version: 10.4.2
         | 
| 244 | 
            +
              type: :runtime
         | 
| 245 | 
            +
              prerelease: false
         | 
| 246 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 247 | 
            +
                requirements:
         | 
| 248 | 
            +
                - - '='
         | 
| 249 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 250 | 
            +
                    version: 10.4.2
         | 
| 251 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 252 | 
            +
              name: parallel_tests
         | 
| 253 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 254 | 
            +
                requirements:
         | 
| 255 | 
            +
                - - '='
         | 
| 256 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 257 | 
            +
                    version: '1.9'
         | 
| 258 | 
            +
              type: :runtime
         | 
| 259 | 
            +
              prerelease: false
         | 
| 260 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 261 | 
            +
                requirements:
         | 
| 262 | 
            +
                - - '='
         | 
| 263 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 264 | 
            +
                    version: '1.9'
         | 
| 265 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 266 | 
            +
              name: tiny_tds
         | 
| 267 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 268 | 
            +
                requirements:
         | 
| 269 | 
            +
                - - '='
         | 
| 270 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 271 | 
            +
                    version: '0.7'
         | 
| 272 | 
            +
              type: :runtime
         | 
| 273 | 
            +
              prerelease: false
         | 
| 274 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 275 | 
            +
                requirements:
         | 
| 276 | 
            +
                - - '='
         | 
| 277 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 278 | 
            +
                    version: '0.7'
         | 
| 279 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 280 | 
            +
              name: rest-client
         | 
| 281 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 282 | 
            +
                requirements:
         | 
| 283 | 
            +
                - - "~>"
         | 
| 284 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 285 | 
            +
                    version: '0'
         | 
| 286 | 
            +
              type: :runtime
         | 
| 287 | 
            +
              prerelease: false
         | 
| 288 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 289 | 
            +
                requirements:
         | 
| 290 | 
            +
                - - "~>"
         | 
| 291 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 292 | 
            +
                    version: '0'
         | 
| 293 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 294 | 
            +
              name: axe-matchers
         | 
| 295 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 296 | 
            +
                requirements:
         | 
| 297 | 
            +
                - - '='
         | 
| 298 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 299 | 
            +
                    version: 1.3.4
         | 
| 300 | 
            +
              type: :runtime
         | 
| 301 | 
            +
              prerelease: false
         | 
| 302 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 303 | 
            +
                requirements:
         | 
| 304 | 
            +
                - - '='
         | 
| 305 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 306 | 
            +
                    version: 1.3.4
         | 
| 307 | 
            +
            description: 'Cucumber Websteps, Helpers and Executable for Web Test Automation '
         | 
| 308 | 
            +
            email:
         | 
| 309 | 
            +
            - SimpliTest@cgifederal.com
         | 
| 310 | 
            +
            executables:
         | 
| 311 | 
            +
            - SimpliTest
         | 
| 312 | 
            +
            extensions: []
         | 
| 313 | 
            +
            extra_rdoc_files: []
         | 
| 314 | 
            +
            files:
         | 
| 315 | 
            +
            - README.md
         | 
| 316 | 
            +
            - SimpliTest.gemspec
         | 
| 317 | 
            +
            - bin/SimpliTest
         | 
| 318 | 
            +
            - lib/SimpliTest.rb
         | 
| 319 | 
            +
            - lib/SimpliTest/cli/main.rb
         | 
| 320 | 
            +
            - lib/SimpliTest/config/configuration.rb
         | 
| 321 | 
            +
            - lib/SimpliTest/config/directory_paths.rb
         | 
| 322 | 
            +
            - lib/SimpliTest/config/environment.rb
         | 
| 323 | 
            +
            - lib/SimpliTest/config/local_environment.rb
         | 
| 324 | 
            +
            - lib/SimpliTest/config/profiles/chrome.rb
         | 
| 325 | 
            +
            - lib/SimpliTest/config/profiles/firefox.rb
         | 
| 326 | 
            +
            - lib/SimpliTest/config/profiles/internet_explorer.rb
         | 
| 327 | 
            +
            - lib/SimpliTest/config/profiles/phantom.rb
         | 
| 328 | 
            +
            - lib/SimpliTest/config/profiles/phantom_debug.rb
         | 
| 329 | 
            +
            - lib/SimpliTest/config/profiles/selenium.rb
         | 
| 330 | 
            +
            - lib/SimpliTest/config/screen_size.rb
         | 
| 331 | 
            +
            - lib/SimpliTest/config/steps.rb
         | 
| 332 | 
            +
            - lib/SimpliTest/helpers/data_validation.rb
         | 
| 333 | 
            +
            - lib/SimpliTest/helpers/file.rb
         | 
| 334 | 
            +
            - lib/SimpliTest/helpers/project_setup.rb
         | 
| 335 | 
            +
            - lib/SimpliTest/helpers/step_helpers/custom_chrome_helpers.rb
         | 
| 336 | 
            +
            - lib/SimpliTest/helpers/step_helpers/custom_date_helpers.rb
         | 
| 337 | 
            +
            - lib/SimpliTest/helpers/step_helpers/custom_form_helpers.rb
         | 
| 338 | 
            +
            - lib/SimpliTest/helpers/step_helpers/custom_phantomjs_helpers.rb
         | 
| 339 | 
            +
            - lib/SimpliTest/helpers/step_helpers/custom_selenium_helpers.rb
         | 
| 340 | 
            +
            - lib/SimpliTest/helpers/step_helpers/html_selectors_helpers.rb
         | 
| 341 | 
            +
            - lib/SimpliTest/helpers/step_helpers/navigation_helpers.rb
         | 
| 342 | 
            +
            - lib/SimpliTest/helpers/step_helpers/tolerance_for_sync_issues.rb
         | 
| 343 | 
            +
            - lib/SimpliTest/helpers/step_helpers/within_helpers.rb
         | 
| 344 | 
            +
            - lib/SimpliTest/helpers/windows_ui.rb
         | 
| 345 | 
            +
            - lib/SimpliTest/steps/debugging_steps.rb
         | 
| 346 | 
            +
            - lib/SimpliTest/steps/form_steps.rb
         | 
| 347 | 
            +
            - lib/SimpliTest/steps/form_verification_steps.rb
         | 
| 348 | 
            +
            - lib/SimpliTest/steps/navigation_steps.rb
         | 
| 349 | 
            +
            - lib/SimpliTest/steps/scoper.rb
         | 
| 350 | 
            +
            - lib/SimpliTest/steps/verification_steps.rb
         | 
| 351 | 
            +
            - lib/SimpliTest/tasks/document.rb
         | 
| 352 | 
            +
            - lib/SimpliTest/tasks/examples.rb
         | 
| 353 | 
            +
            - lib/SimpliTest/tasks/internal_release.rb
         | 
| 354 | 
            +
            - lib/SimpliTest/tasks/testinstall.rb
         | 
| 355 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/Readme.txt
         | 
| 356 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/cucumber.yml
         | 
| 357 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/documentation/step_definitions.html
         | 
| 358 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/specifications/RegressionTests/HelloWorld.feature
         | 
| 359 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/specifications/SmokeTest/HelloWorld.feature
         | 
| 360 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/specifications/accessibilityTests/HelloWorld.feature
         | 
| 361 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/environments.yml
         | 
| 362 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/pages.yml
         | 
| 363 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/selectors.yml
         | 
| 364 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/support/config/settings.yml
         | 
| 365 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/features/support/env.rb
         | 
| 366 | 
            +
            - lib/SimpliTest/templates/NewSimpliTestProject/license.txt
         | 
| 367 | 
            +
            - lib/SimpliTest/templates/document/css/style.css
         | 
| 368 | 
            +
            - lib/SimpliTest/templates/document/index.html
         | 
| 369 | 
            +
            - lib/version.rb
         | 
| 370 | 
            +
            homepage: https://github.com/CGIFederalInc/SimpliTest
         | 
| 371 | 
            +
            licenses:
         | 
| 372 | 
            +
            - MIT
         | 
| 373 | 
            +
            metadata: {}
         | 
| 374 | 
            +
            post_install_message: 
         | 
| 375 | 
            +
            rdoc_options: []
         | 
| 376 | 
            +
            require_paths:
         | 
| 377 | 
            +
            - lib
         | 
| 378 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 379 | 
            +
              requirements:
         | 
| 380 | 
            +
              - - ">="
         | 
| 381 | 
            +
                - !ruby/object:Gem::Version
         | 
| 382 | 
            +
                  version: '0'
         | 
| 383 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 384 | 
            +
              requirements:
         | 
| 385 | 
            +
              - - ">="
         | 
| 386 | 
            +
                - !ruby/object:Gem::Version
         | 
| 387 | 
            +
                  version: '0'
         | 
| 388 | 
            +
            requirements: []
         | 
| 389 | 
            +
            rubyforge_project: 
         | 
| 390 | 
            +
            rubygems_version: 2.5.2
         | 
| 391 | 
            +
            signing_key: 
         | 
| 392 | 
            +
            specification_version: 4
         | 
| 393 | 
            +
            summary: This gem provides common web steps and command line executable for automated
         | 
| 394 | 
            +
              acceptance testing
         | 
| 395 | 
            +
            test_files: []
         |