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

Commit

Permalink
Updated Documentation for GenericTextField
Browse files Browse the repository at this point in the history
  • Loading branch information
nicopaul committed Dec 19, 2016
1 parent 5409425 commit 11736aa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 12 additions & 1 deletion documentation/chapters/page-object-functional.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,17 @@ public class Headline extends PageObject {

- `<form/>`

## GenericTextField
**Extends:** PageObject

**HTML Tags:**

- `<input/>`
- `<input type=""/>`
- `<input type="text"/>`
- `<input type="password"/>`
- `<input type="number"/>`

## Headline
**Extends:** PageObject

Expand Down Expand Up @@ -191,7 +202,7 @@ public class Headline extends PageObject {
- `<textarea/>`

## TextField
**Extends:** PageObject
**Extends:** GenericTextField

**HTML Tags:**

Expand Down
1 change: 1 addition & 0 deletions documentation/chapters/support-assertj.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ page objects provided by the `webtester-core module`:

- `ButtonAssert`
- `CheckboxAssert`
- `GenericTextFieldAssert`
- `IFrameAssert`
- `ImageAssert`
- `ListAssert`
Expand Down
1 change: 1 addition & 0 deletions documentation/chapters/support-hamcrest.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ page objects provided by the `webtester-core module`:

- `ButtonMatcher`
- `CheckboxMatcher`
- `GenericTextFieldMatcher`
- `IFrameMatcher`
- `ImageMatcher`
- `ListMatcher`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* @since 1.2
*/
public class GenericTextFieldMatcher extends PageObjectMatcher {
public final class GenericTextFieldMatcher extends PageObjectMatcher {


/**
Expand Down Expand Up @@ -42,7 +42,7 @@ public boolean matches(Object genericTextField){

}

protected GenericTextFieldMatcher() {
private GenericTextFieldMatcher() {
/* utility constructor */
}
}

0 comments on commit 11736aa

Please sign in to comment.