Sha256: e9af544912fc6b4aa144e1956b505ad4494903e3d65827c6c321d690c1a6b76d

Contents?: true

Size: 1.23 KB

Versions: 4

Compression:

Stored size: 1.23 KB

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: Handling a non-declared text field
    When the oath link on the object test page is clicked
    Then the first success page appears
  
  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   |
      | css       |
      | id        |
      | name      |
      | class     |
      | xpath     |
      | index     |
      | title     |
      | text      |
      | href      |
      | link      |
      | link_text |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
symbiont-0.1.7 specs/link.feature
symbiont-0.1.6 specs/link.feature
symbiont-0.1.5 specs/link.feature
symbiont-0.1.4 specs/link.feature