怎样让xml文件的属性值随机生成

前端之家收集整理的这篇文章主要介绍了怎样让xml文件的属性值随机生成前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

怎样让xml文件属性随机生成


如:<request><jabber type="raw" ack="no_ack" data="&lt;message id='a98d8bed-ac21-4851-a8b3-6e4bd6523174' to='xm@dc01' ><//request> id为随机值,而不是固定值




解答:

首先dtd文件里要有random属性

然后设置random="true"

<thinktime min="2" max="10" random="true"></thinktime>
这时 thinktime的取值为2-10之间

If you want to use a fixed seed for the random generator,you can use the seed option,like this (by default,tsung will
use the current time to set the seed,therefore random numbers should be different for every test)

如果你想使用一个固定的种子随机发生器,你可以使用种子标签option,tsung使用当前时间,设置种子,这样随机数每次都不一样
<option name="seed" value="42"/>

搞定

前提条件,解析此xml的工具或软件得支持random关键字,并对其进行随机策略处理。
原文链接:https://www.f2er.com/xml/298016.html

猜你在找的XML相关文章