PHP SimpleTest:如何从网页获取值?

发布于 2024-12-25 01:03:28 字数 1012 浏览 2 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人疚 2025-01-01 01:03:29

您可以使用 Selenium 来测试用户界面:

You can use Selenium to test user interfaces:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文