PHP SimpleTest:如何从网页获取值?
我使用 SimpleTest 来测试用 PHP 编写的页面。
我有一个表格,您可以一次输入多个姓名。然后单击“生成用户名和密码”。
我的测试可以使用 setField('txtname', 'test user') 设置名称,并且我的测试可以单击提交按钮。但是如何获取生成的用户名和密码的值,以便我可以使用此信息来检查登录是否有效?
我想要从中检索用户名和密码的生成的 html 代码如下所示:
<table border="1" cellpadding="2" cellspacing="0">
<thead>
<tr bgcolor="EEEEEE">
<th align=left>Last Name</th><th align=left>First Name</th><th align=left>Username</th>
<th align=left>Password</th></tr>
</thead>
<tbody>
<tr>
<td>Test</td><td>User</td><td id=username1>UserTest</td>
<td id=password1>1a818</td></tr>
<tr>
<td>Gates</td><td>Bill</td><td id=username2>BillGates1</td>
<td id=password2>aa37c</td></tr>
</tbody>
</table>
感谢您的任何提示。
菲利普
I use SimpleTest for testing my pages written in PHP.
I have a form where you can enter several names at once. Then you click on "Generate Usernames and Passwords".
My test can set the names using setField('txtname', 'test user') and my test can click on the submit button. But how do I get the values of a generated username and password so that I can use this information to check if the login works?
The generated html code I want to retrieve the username and password from looks like this:
<table border="1" cellpadding="2" cellspacing="0">
<thead>
<tr bgcolor="EEEEEE">
<th align=left>Last Name</th><th align=left>First Name</th><th align=left>Username</th>
<th align=left>Password</th></tr>
</thead>
<tbody>
<tr>
<td>Test</td><td>User</td><td id=username1>UserTest</td>
<td id=password1>1a818</td></tr>
<tr>
<td>Gates</td><td>Bill</td><td id=username2>BillGates1</td>
<td id=password2>aa37c</td></tr>
</tbody>
</table>
Thanks for any tips.
Philip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Selenium 来测试用户界面:
You can use Selenium to test user interfaces: