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
Dmitry Baev edited this page Aug 27, 2014
·
13 revisions
Parameter is any value describing your test environment or current test case. For example, parameter can store 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 (see https://github.com/allure-framework/allure-core/pull/286):
public class TestClass {
...
@Parameter("My Param")
private String myParameter;
...
}
Any value assigned to such field will be shown in report.
Note that the initializations of constant fields (static final fields where the initializer is a constant string object or primitive value) are not join points, since Java requires their references to be inlined.
- 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.