斯卡拉类型的形式

时间:2015-04-16 04:53:13

标签: scala gatling

我是scala语言的新手。我想知道的是我需要从下拉列表中选择一个值。这里发生的事情如下所示。

<input id="categoryDid" class=" x-form-text x-form-field print_underline x-form-empty-field x-trigger-noedit" type="text" name="category" autocomplete="off" size="24" tabindex="1" readonly="" style="width: 132px;">    drop down data some where else.    <div id="ext-gen274" class="x-combo-list-inner" style="width: 148px; margin-bottom: 8px; height: 63px;">

将数据下拉到其他地方,如下所示。

    <div id="ext-gen274" class="x-combo-list-inner" style="width: 148px; margin-bottom: 8px; height: 63px;">
<div class="x-combo-list-item">--Select--</div>
<div class="x-combo-list-item">Mobile Phone</div>
<div class="x-combo-list-item x-combo-selected">Tablet</div>
</div>

我正在使用gatling / scala组合。现在我需要选择的是“手机”。我使用formParam("categoryDid", "Mobile Phone"),但似乎这不起作用。 有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

参数的名称(参见输入字段)是category,而不是categoryDid:

formParam("category", "Mobile Phone")