Sha256: a29938bb90772af1aac4f8983be09b37832cc1720c0a7ee4e160f47666e61973

Contents?: true

Size: 869 Bytes

Versions: 6

Compression:

Stored size: 869 Bytes

Contents

Feature: Area

  Background:
    Given I am on the static elements page

  Scenario: Retrieve an area element
    When I retrieve the area element
    Then I should know it exists
    And I should know it is visible

  Scenario Outline: Locating areas on the page
    When I search for the area by "<search_by>"
    Then I should be able to click the area

  Examples:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |

  Scenario: Getting the coordinates for the area
    When I retrieve the area element
    Then I should see the coordinates are "0,0,82,126"

  Scenario: Getting the shape for the area
    When I retrieve the area element
    Then I should see the shape is "rect"

  Scenario: Getting the href from the area
    When I retrieve the area element
    Then I should see the href is "sun.html"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
page-object-0.7.5.1 features/area.feature
page-object-0.7.5 features/area.feature
page-object-0.7.4 features/area.feature
page-object-0.7.3 features/area.feature
page-object-0.7.2 features/area.feature
page-object-0.7.1 features/area.feature