Sha256: 33d1c679984f1c0f43b4d13a34a8bc447060c3f43e1126fe605850786f827bc8

Contents?: true

Size: 1.04 KB

Versions: 3

Compression:

Stored size: 1.04 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       |
        | name        |
        | xpath       |
        | index       |

    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   |
        | name    | index   |

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
druid-ts-1.1.7 features/canvas.feature
druid-ts-1.1.6 features/canvas.feature
druid-ts-1.1.5 features/canvas.feature