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 collaboratorh1
As a web developer
I want to locate h1 elements
So that I can write tests that make assertions about their content
- Background
-
- When
-
I define a page class as:
class PageWithH1 < BasePageClass include WatirPageHelper h1 :element end
- Scenarios
-
- h1 element is located
-
- Then
-
I should be able to locate the element with the following code:
page = PageWithH1.new true page.element_h1.exists?.should be_true
- h1 text is extracted
-
- Then
-
I should be able to execute the following assertion:
page = PageWithH1.new true page.element.should == 'h1 content'
Last published over 5 years ago by markryall.