for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace hipanel\tests\_support\Helper;
use Codeception\Module\WebDriver;
class PnotifyHelper extends \Codeception\Module
{
public function closeNotification(string $text): void
/** @var WebDriver $I */
$I = $this->getModule('WebDriver');
$I->waitForElement('.ui-pnotify', 180);
$I->see($text, '.ui-pnotify');
$I->moveMouseOver(['css' => '.ui-pnotify']);
$I->wait(1);
$I->click('//span[@title="Close"]');
}