本文整理汇总了PHP中JoomlaWebdriverTestCase类的典型用法代码示例。如果您正苦于以下问题:PHP JoomlaWebdriverTestCase类的具体用法?PHP JoomlaWebdriverTestCase怎么用?PHP JoomlaWebdriverTestCase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了JoomlaWebdriverTestCase类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tearDown
/**
* Logout and close test.
*
* @since 3.2
*/
public function tearDown()
{
if (!empty($this->previousSiteName)) {
$this->siteHomePage->changeSiteName($this->previousSiteName);
}
$this->doSiteLogout();
parent::tearDown();
}
示例2: tearDown
/**
* Logout and close test.
*
* @since 3.0
*/
public function tearDown()
{
$this->doAdminLogout();
parent::tearDown();
}
示例3: tearDown
public function tearDown()
{
$this->gcPage->saveAndClose('ControlPanelPage');
$this->doAdminLogout();
parent::tearDown();
}
示例4: tearDown
/**
* Logout and close test.
*
* @since 3.2
*/
public function tearDown()
{
$this->siteHomePage->changeMetaDescription($this->previousMetaDescription);
$this->doSiteLogout();
parent::tearDown();
}
示例5: tearDown
/**
* Logout and close test.
*
* @since 3.2
*/
public function tearDown()
{
$this->siteHomePage->changeTemplateColor($this->previousTemplateColor);
$this->doSiteLogout();
parent::tearDown();
}
示例6: tearDown
/**
* Logout and close test.
*
* @since 3.2
*
* @return void
*/
public function tearDown()
{
$this->siteHomePage->changeBackgroundColor($this->previousBackgroundColor);
$this->doSiteLogout();
parent::tearDown();
}
示例7: tearDown
/**
* Logout and close test.
*
* @since 3.2
*/
public function tearDown()
{
$this->doSiteLogout();
parent::tearDown();
}