Sha256: 62743953a00a1182d1e971f4bf6666e4e7e3fb8be63a95f2b9dc825e319238b9

Contents?: true

Size: 884 Bytes

Versions: 3

Compression:

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

3 entries across 3 versions & 1 rubygems

Version Path
page-object-0.2 features/image.feature
page-object-0.1.1 features/image.feature
page-object-0.1 features/image.feature