Sha256: 0572da2a81e36d39f6a6a3c899eaf23a237da05d1b3e7934bb92226477752152

Contents?: true

Size: 1.93 KB

Versions: 5

Compression:

Stored size: 1.93 KB

Contents

Feature: Support for video element

  Background:
    Given I am on the audio video page

  Scenario: Finding an video element
    When I retrieve the video element
    Then I should know it exists
    And I should know it is visible

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

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

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

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

  Scenario: Should know if it is autoplay
    When I retrieve the video element
    Then I should know the video is not autoplay

  Scenario: Should know if the controls are displayed
    When I retrieve the video element
    Then I should know that the controls are displayed

  Scenario: Should know if it is paused
    When I retrieve the video element
    Then I should know that the video is paused

  Scenario: Should know its volume
    When I retrieve the video element
    Then I should know that its volume is 1

  Scenario: Should know its height and width
    When I retrieve the video element
    Then I should know that its height is 240 pixels
    And I should knot what its width is 320 pixels

  Scenario: Should know if it has ended
    When I retrieve the video element
    Then I should know that it has not ended

  Scenario: Should know if it is seeking
    When I retrieve the video element
    Then I should know that it is not seeking

  Scenario: Should know if it is in a loop
    When I retrieve the video element
    Then I should know that it is not in a loop

  Scenario: Should know if it is muted
    When I retrieve the video element
    Then I should know that it is muted

Version data entries

5 entries across 5 versions & 2 rubygems

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