本文整理汇总了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');