如何在运行 PHPUnit selense HTML 文件时仅使用 rc 服务器创建 1 个会话
我的网站有一个登录页面,因此需要先登录才能运行每个 HTML selense 测试文件。 PHPUnit 框架的工作方式是通过独立运行每个测试来创建独立的测试用例,这意味着它在每个测试用例上调用 Setup()
函数 -->然后调用 Selenium RC Server -->然后创建会话 ID。我的代码如下。
require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class SeleneseTests extends PHPUnit_Extensions_SeleniumTestCase
{
protected static $seleneseDirectory = '/home/server/Web/phase-four/tests';
protected function setUp()
{
$this->setBrowser("*firefox");
$this->setBrowserUrl("http://mywebsite.com/");
}
}
My website has a Login page, so it needs to login first to run each HTML selense test file. The way PHPUnit framework works is creating independent test cases by running each test independently, which means it calls the Setup()
function on each test case --> then calls Selenium RC Server --> then creates session id. My code is below.
require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class SeleneseTests extends PHPUnit_Extensions_SeleniumTestCase
{
protected static $seleneseDirectory = '/home/server/Web/phase-four/tests';
protected function setUp()
{
$this->setBrowser("*firefox");
$this->setBrowserUrl("http://mywebsite.com/");
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,我的 selenium rc 设置似乎为每个测试保留相同的会话,只要我在 setUp() 函数内设置会话(进行登录)即可。
您还可以在启动 rc 服务器时指定 -browserSessionReuse 标志,以防默认情况下未启用此行为。
My selenium rc setup seems to keep the same session for each test by default, as long as I am setting the session (doing login) inside the setUp() function.
There is also a -browserSessionReuse flag you can specify when starting the rc server, in case this behavior is not enabled by default.