public interface RenderMachineCommands
Modifier and Type | Method and Description |
---|---|
void |
say(String text)
A text that will be wrapped inside a paragraph.
|
<T> void |
sayAndAssertThat(String message,
String reason,
T actual,
org.hamcrest.Matcher<? super T> matcher) |
<T> void |
sayAndAssertThat(String message,
T actual,
org.hamcrest.Matcher<? super T> matcher) |
List<org.apache.http.cookie.Cookie> |
sayAndGetCookies() |
org.apache.http.cookie.Cookie |
sayAndGetCookieWithName(String name) |
Response |
sayAndMakeRequest(Request httpRequest) |
void |
sayNextSection(String headline)
A text that will be wrapped inside a h1.
|
void |
sayRaw(String rawHtml)
If you want to let the renderer render some raw custom html use this
method.
|
void say(String text)
text
- A text that may contain html tags like "This is my
bold
text".void sayNextSection(String headline)
headline
- A text that may contain html tags like "This is my
headline text".void sayRaw(String rawHtml)
rawHtml
- A raw plain html String like "List<org.apache.http.cookie.Cookie> sayAndGetCookies()
org.apache.http.cookie.Cookie sayAndGetCookieWithName(String name)
<T> void sayAndAssertThat(String message, String reason, T actual, org.hamcrest.Matcher<? super T> matcher)
<T> void sayAndAssertThat(String message, T actual, org.hamcrest.Matcher<? super T> matcher)
Copyright © 2015. All Rights Reserved.