Cyara currently provides support for the following formats. A sample of each is provided within the Cyara Web Portal.
JSON (JavaScript object notation)
Mime Type – application/json
Portal Sample – /Samples/ DataDrivenJson.ashx
[
[
{"Phone1": "0299998888"},
{"Phone2": "0277776666"}
],
[
{"Phone1": "0299998888"},
{"Phone2": "0277776666"}
]
]
XML (Extensible markup language)
Mime Type – text/xml
Portal Sample – /Samples/ DataDrivenXml.xml
<scenarios>
<scenario>
<param key="Phone1">0299998888</param>
<param key="Phone2">0277776666</param>
<scenario>
<scenario>
<param key="Phone1">0277776666</param>
<param key="Phone2">0255554444</param>
<scenario>
</scenrios>
CSV
Mime Type – text/csv
Portal Sample –
/Samples/ DataDrivenCsv.ashx
“Phone1”,”Phone2”
0299998888,0277776666
0277776666,0255554444
HTML
Mime Type – text/html
Portal Sample –
/Samples /DataDrivenHtml.htm
<table class="cyara-data-driven">
<tr>
<th>Phone1</th>
<th>Phone2</th>
</tr>
<tr>
<td>0299998888</td>
<td>0277776666</td>
</tr>
<tr>
<td>0404000444</td>
<td>0811112222</td>
</tr>
</table>
Comments
0 comments
Please sign in to leave a comment.