To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorh3
As a web developer
I want to locate h3 elements
So that I can write tests that make assertions about their content
- Background
-
- When
-
I define a page class as:
class PageWithH3 < BasePageClass include WatirPageHelper h3 :element end
- Scenarios
-
- h3 element is located
-
- Then
-
I should be able to locate the element with the following code:
page = PageWithH3.new true page.element_h3.exists?.should be_true
- h3 text is extracted
-
- Then
-
I should be able to execute the following assertion:
page = PageWithH3.new true page.element.should == 'h3 content'
Last published over 5 years ago by markryall.