Skip to content
This repository has been archived by the owner on Jan 14, 2019. It is now read-only.

Environment

vania-pooh edited this page Sep 11, 2014 · 5 revisions

Allure allow you to add test environment values such as report name, browser or test server address:

Usage

There are several ways to add environment to your report:

  • Save file environment.xml in the following format to Allure results directory:
<qa:environment xmlns:qa="urn:model.commons.qatools.yandex.ru">
    <id>2a54c4d7-7d79-4615-b80d-ffc1107016a1</id>
    <name>Allure sample test pack</name>
    <parameter>
        <name>Browser</name>
        <key>my.properties.browser</key>
        <value>Firefox</value>
    </parameter>
    <parameter>
        <name>Test stand</name>
        <key>my.properties.url</key>
        <value>http://yandex.ru</value>
    </parameter>
</qa:environment>  
  • Add properties file environment.properties to Allure results directory:
my.properties.browser=Firefox
my.properties.url=http://yandex.ru

All specified properties will be shown on the Overview page.