Sha256: 0c1edcbb6a2cd69e6fd86ce5d43e13abe89c06a4aca72b8e14ea915242f4c14d

Contents?: true

Size: 860 Bytes

Versions: 4

Compression:

Stored size: 860 Bytes

Contents

Feature: Image

  Background:
    Given I am on the static elements page

  Scenario: Getting the image element
    When I get the image element
    Then the image should be "106" pixels wide
    And the image should be "106" pixels tall

  Scenario Outline: Locating an image on the page
    When I get the image element by "<search_by>"
    Then the image should be "106" pixels wide
    And the image should be "106" pixels tall

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

  Scenario Outline: Locating an image using multiple parameters
    When I get the image element by "<param1>" and "<param2>"
    Then the image should be "106" pixels wide
    And the image should be "106" pixels tall

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
page-object-0.2.4 features/image.feature
page-object-0.2.3 features/image.feature
page-object-0.2.2 features/image.feature
page-object-0.2.1 features/image.feature