This repository has been archived by the owner on Jan 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 168
Parameters
Ivan Krutov edited this page Jul 10, 2014
·
13 revisions
Parameter is any value describing your test environment or current test case. For example, parameter can store either things that don't change during all tests - test stand address or something that changes from test case to test case - test page URL.
Adding parameters in Java looks like:
public class TestClass {
...
@Parameter("My Param")
private String myParameter;
...
}
Any value assigned to such field will be shown in report.
- aShot - WebDriver Screenshot utility. Take screenshots, crop, prettify, compare.
- HTML Elements - A Java framework that provides easy-to-use interaction with page elements in webpage tests.
- Properties - A Java library for populating beans with system environment properties in a simple and convenient way.
- Perspective - API and shell to orchestrate multiple clouds.