Sha256: e5afa2878990605669678ef60fddd57bc8dbed0d50a7b968270a6bae47e0c09d

Contents?: true

Size: 1008 Bytes

Versions: 14

Compression:

Stored size: 1008 Bytes

Contents

Feature: Getting HTML Atributes
  As Developer
  I want to get HTML atributs from elements

  Scenario: Get the value of a html element
    Given I am on a page that has an element
    And the textfield has the value "text value"
    When I ask for the "value" of it element
    Then I should see the value of it

  @pending
  Scenario: Get the text of a html element
    Given I am on a page that has an element
    And the textfield has the text "text text"
    When I ask for the "text" of it element
    Then I should see the text of it

  @pending
  Scenario: Get the class of a html element
    Given I am on a page that has an element
    And the textfield has the class "text_class"
    When I ask for the "class" of it element
    Then I should see the class of it

  @pending
  Scenario: Get the tilte of a html element 
    Given I am on a page that has an element
    And the textfield has the title "text title"
    When I ask for the "title" of it element
    Then I should see the title of it

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
cello-0.0.35 features/get_html_attributes.feature
cello-0.0.34 features/get_html_attributes.feature
cello-0.0.33 features/get_html_attributes.feature
cello-0.0.32 features/get_html_attributes.feature
cello-0.0.31 features/get_html_attributes.feature
cello-0.0.30 features/get_html_attributes.feature
cello-0.0.29 features/get_html_attributes.feature
cello-0.0.28 features/get_html_attributes.feature
cello-0.0.27 features/get_html_attributes.feature
cello-0.0.26 features/get_html_attributes.feature
cello-0.0.25 features/get_html_attributes.feature
cello-0.0.23 features/get_html_attributes.feature
cello-0.0.21 features/get_html_attributes.feature
cello-0.0.19 features/get_html_attributes.feature