1

有谁知道我将如何验证 cookie 值是否包含 Selenium IDE 中的文本子字符串?

例如,如果我有一个名为“MyCookie”的 cookie,其内容为“这是我的值”,并且我想断言该 cookie 包含子字符串“值”,这可以使用 IDE 吗?

更新

解决方法如下

storeCookieByName | MyCookie | variable1

storeEval | storedVars['variable1'].indexOf('value') > 0 ? true: false|result;

verifyExpression | $(result) | true
4

2 回答 2

4

在 selenium ide storeCookieByName(name, variableName) 函数中返回 cookie 的值,在此函数中,您仅在目标列中提供 cookie 名称并在值列中写入任何变量

       Command       |    Target   |  value
   storeCookieByName | mf_user     | test
      echo           | ${test}

name - cookie 的名称。

storeCookieByName 函数 返回:cookie 的值

于 2013-03-15T11:40:22.397 回答
1

在 IDE 中,使用 storeCookieByName 函数提供 cookie 名称和您希望将 cookie 存储到其中的值的变量名称。

于 2013-03-12T14:09:51.730 回答