Sha256: f567e1b68a52fd17b951c2197c3a0fe791ecf3b9c59dcd33392685ac4637e1b0

Contents?: true

Size: 922 Bytes

Versions: 2

Compression:

Stored size: 922 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     |
    | 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

2 entries across 2 versions & 1 rubygems

Version Path
meeane-page-object-0.1.10 features/area.feature
meeane-page-object-0.1.8 features/area.feature