Sha256: 147ff42304af31874a7b5e532c4f32aeef284db6d0e6c2ad806c238a5a88ae08

Contents?: true

Size: 1.05 KB

Versions: 10

Compression:

Stored size: 1.05 KB

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     |

  @selenium_only
  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

  Scenarios:
    | search_by |
    | css       |

  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

10 entries across 10 versions & 1 rubygems

Version Path
page-object-0.8.7 features/area.feature
page-object-0.8.6.1 features/area.feature
page-object-0.8.6 features/area.feature
page-object-0.8.5 features/area.feature
page-object-0.8.4 features/area.feature
page-object-0.8.3 features/area.feature
page-object-0.8.2 features/area.feature
page-object-0.8.1 features/area.feature
page-object-0.8 features/area.feature
page-object-0.7.6 features/area.feature