本文整理匯總了PHP中WebGuy::waitForElement方法的典型用法代碼示例。如果您正苦於以下問題:PHP WebGuy::waitForElement方法的具體用法?PHP WebGuy::waitForElement怎麽用?PHP WebGuy::waitForElement使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類WebGuy
的用法示例。
在下文中一共展示了WebGuy::waitForElement方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _createEmptyModule
public function _createEmptyModule(WebGuy $I)
{
$I->canSee('Create empty root element');
$I->wait(2);
$I->click('.typeaheadName');
$I->waitForElement('.typeahead');
$I->click('interfaces');
$I->click('.typeaheadNS');
$I->expectTo('see only one available NS');
$I->seeNumberOfElements('.typeaheadNS + .typeahead a', 1);
$I->click('urn:ietf:params:xml:ns:yang:ietf-interfaces');
$I->click('Create');
$I->waitForText('interfaces');
}
示例2: WebGuy
<?php
$I = new WebGuy($scenario);
include 'constant.php';
$I->wantTo('Reset my password');
$I->amOnPage('/');
$I->click(LoginPopUp::$loginPopup);
$I->waitForText('Create account');
$I->click(ForgotPopUp::$passwordLink);
$I->waitForText('Forgot password');
$I->wait(1);
$I->waitForElement(ForgotPopUp::$emailField);
$I->seeElement(ForgotPopUp::$emailField);
$I->seeElement(ForgotPopUp::$resetButton);
$I->fillField(ForgotPopUp::$emailField, $email);
$I->click(ForgotPopUp::$resetButton);
$I->waitForText('Reset password link was sent on your e-mail address');
示例3: WebGuy
<?php
$I = new WebGuy($scenario);
include 'constant.php';
$I->wantTo('Check My mail Box');
$I->amOnUrl('http://temp-mail.ru/option/change');
$I->fillField('//*[@id="input_mail"]', $mail);
$I->click('//*[@id="postbut"]');
$I->wait(1);
$I->click('//*[@id="click-to-refresh"]');
$I->click('//*[@id="mails"]/tbody/tr/td[2]/a');
$I->waitForElement('//*[@id="templateBody"]/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr/td/div/a');
$I->click('//*[@id="templateBody"]/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr/td/div/a');
$I->waitForText('Create account');
$I->see('Create account');
$I->see('Forgot password?');
$I->seeElement('#email');
$I->seeElement('$password');
$I->seeElement('#loginButton');