Sha256: ff2ad3b54fdf9ea3ec22ceb9351dc24f2d65f53d6ddee9ae4ff2fc42f2356714

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

Feature: Support for the canvas element

    Background:
      Given I am on the static elements page

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

    Scenario Outline: Locating a canvas on the page
      When I search for the canvas by "<search_by>"
      Then I should know it is visible

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

    Scenario: Determining the width and height of the canvas
      When I retrieve the canvas element
      Then I should see that the canvas width is "200"
      And I should see that the canvas height is "100"

    Scenario Outline: Locating canvases using multiple parameters
      When I search for the canvas element by "<param1>" and "<param2>"
      Then I should know it is visible

      Examples:
        | param1  | param2  |
        | class   | index   |

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/canvas.feature
druid-ts-1.2.6 features/canvas.feature
druid-ts-1.2.5 features/canvas.feature
druid-ts-1.2.4 features/canvas.feature
druid-ts-1.2.3 features/canvas.feature