Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Latest commit

 

History

History
33 lines (27 loc) · 810 Bytes

File metadata and controls

33 lines (27 loc) · 810 Bytes

Home

Hamcrest Matchers

The support module webtester-support-hamcrest provides Hamcrest Matcher implementations for each of the functional page objects provided by the webtester-core module:

  • ButtonMatcher
  • CheckboxMatcher
  • GenericListMatcher
  • GenericTextFieldMatcher
  • IFrameMatcher
  • ImageMatcher
  • ListMatcher
  • NumberFieldMatcher
  • PageObjectMatcher
  • RadioButtonMatcher
  • TableFieldMatcher
  • TableMatcher
  • TableRowMatcher
  • TextAreaMatcher
  • TextFieldMatcher

All state getter methods of supported page objects have a corresponding matcher implementation.

Example

TextField username = ...;
TextFieldMatcher.assertThat(username, hasText("fooUser"));

Linked Documentation