%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/codeception/base/tests/angular/ |
Upload File : |
<?php
class AngularCest
{
public function _before(AngularGuy $I)
{
$I->amOnPage('/');
}
public function followLinks(AngularGuy $I)
{
$I->click('Get more info!');
$I->see('About', 'h1');
$I->seeInCurrentUrl('#/info');
$I->expect('Angular scope is rendered');
$I->see('Welcome to event app', 'p');
$I->click('Back to form');
$I->see('Create Event', 'h1');
}
public function fillFieldByName(AngularGuy $I)
{
$I->see('Create Event', 'h1');
$I->fillField('Name', 'davert');
$I->submit();
$I->dontSee('Please wait');
$I->see('Thank you');
$I->see('davert', '#data');
$I->seeInFormResult(['name' => 'davert']);
}
/**
* @depends fillFieldByName
* @param AngularGuy $I
*/
public function fillFieldByPlaceholder(AngularGuy $I)
{
$I->fillField('Please enter a name', 'davert');
$I->submit();
$I->seeInFormResult(['name' => 'davert']);
}
/**
* @depends fillFieldByName
* @param AngularGuy $
*/
public function fillRadioByLabel(AngularGuy $I)
{
$I->checkOption('Free');
$I->submit();
$I->seeInFormResult(['price' => '0']);
}
public function fillInWysiwyg(AngularGuy $I)
{
$I->expect('i can edit editable divs');
$I->fillField('.cke_editable', 'Hello world');
$I->wait(1);
$I->submit();
$I->seeInFormResult(['htmldesc' => "<p>Hello world</p>\n"]);
}
public function fillSelect(AngularGuy $I)
{
$I->selectOption('Guest Speaker', 'Iron Man');
$I->submit();
$I->seeInFormResult(["speaker1" => "iron_man"]);
}
}