Sha256: 51b1999246fd10cfacfdd0e1c14ebecf9db866e552edd7eb8192befd6fbfaa7b

Contents?: true

Size: 1022 Bytes

Versions: 2

Compression:

Stored size: 1022 Bytes

Contents

Feature: Ability to Support Link Web Objects
  
  Scenario: Reference a link
    When on the landing page
    Then the database app link should exist
    And the database app link should be visible
    And the database app link should be a link object
  
  Scenario: Get text from a link
    When on the landing page
    Then the text of the object test page link should be "Simple Object Page"
  
  Scenario: Click a link
    When the object test page link on the landing page is clicked
    Then the simple object page appears
  
  Scenario: Handling a non-existent link
    When on the landing page
    Then the fake link should not exist
    But the fake link should be a link object
    
  Scenario Outline: Finding links with locators
    When the avengers link on the object test page is clicked by "<locator>"
    Then the first success page appears
    
    Scenarios:
      | locator |
      | id      |
      | name    |
      | class   |
      | xpath   |
      | index   |
      | text    |
      | href    |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
symbiont-0.1.2 specs/link.feature
symbiont-0.1.1 specs/link.feature