1

想知道是否可以复制随机生成的用户名并粘贴到登录字段中。大多数 StoreValue 命令不适用于此处,因为每次都会生成新名称,因此我需要找到一个脚本,如果可能的话,它会捕获/存储未知值。

测试场景是这样的

注册帐户并在网页上生成随机用户名和指定密码。用户名的格式显示为:

注册完成!用户名:Xxxxxxxxxx 密码:Xxxxxxxxxx

我现在需要让 Selenium 读取该用户名,将其复制并粘贴到登录字段。

4

1 回答 1

0

Can you try this, Store the required text in variable like I stored in variable s and Try to access same variable using command ${s}

|Command | Target | Value |

|storeText | //ul/li | s |

|echo |${s}|

Also you can get more help from http://voices.yahoo.com/selenium-ide-commands-functions-data-verification-6633440.html?cat=15

于 2013-05-15T12:23:59.680 回答