-
Notifications
You must be signed in to change notification settings - Fork 49
Urls
Maciej Laskowski edited this page Sep 20, 2016
·
2 revisions
<urls>
element lists all urls which will be processed within current test. Contains one or more url elements.
A single url which will be processed by particular test.
Attribute name | Description | Mandatory |
---|---|---|
href |
Page address (also see note under name attribute) | yes |
name |
Identifier for url. It is used to identify data for url. If provided should be unique for each test in test suite. If not provided is set to encoded href value. Should consists only of letters, digits and/or characters: - , - . Note that if href="" with provided url name attribute and suite domain attribute is also valid |
no |
description |
no longer supported |
<?xml version="1.0" encoding="UTF-8" ?>
<suite name="test-suite" company="cognifide" project="project">
<test name="urls-test">
<collect>
...
</collect>
<compare>
...
</compare>
<urls>
<url href="http://www.example.com"/>
...
</urls>
</test>
...
<reports>
...
</reports>
</suite>
-
How To Use
-
Releases