當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WebGuy類代碼示例

本文整理匯總了PHP中WebGuy的典型用法代碼示例。如果您正苦於以下問題:PHP WebGuy類的具體用法?PHP WebGuy怎麽用?PHP WebGuy使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了WebGuy類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: backendLogin

 /**
  * Test is home available
  *
  * @param AcceptanceTester $I
  */
 public function backendLogin(AcceptanceTester $I)
 {
     $I = new WebGuy($scenario);
     $I->wantTo('see GitHub word in title ');
     $I->amOnPage('/');
     $I->seeInTitle('GitHub');
 }
開發者ID:RSGallery2,項目名稱:RoboLiTasks,代碼行數:12,代碼來源:SeleniumTest.php

示例2: testEditConfigWithCommit

 public function testEditConfigWithCommit(WebGuy $I)
 {
     $I->wantTo('create new interface using commit all');
     $this->_addInterface($I);
     $I->click('Append changes');
     $I->seeNumberOfElements('form.addedForm', 1);
     $I->click('Commit all changes');
     // see result
     CommonScenarios::checkNumberOfFlashes($I, 1);
     $I->seeNumberOfElements('.level-0.interface', 3);
 }
開發者ID:Barathi07,項目名稱:Netopeer-GUI,代碼行數:11,代碼來源:InterfacesConfigureCest.php

示例3: testEditConfigWithCommit

 public function testEditConfigWithCommit(WebGuy $I)
 {
     $I->wantTo('create new transition function using commit all');
     $this->_turingAddTransition($I, true, 2);
     $I->click('Append changes');
     $I->seeNumberOfElements('form.addedForm', 1);
     $I->click('Commit all changes');
     $I->waitForElementNotVisible('#ajax-spinner');
     $I->wait(2);
     // see result
     CommonScenarios::checkNumberOfFlashes($I, 1);
     $I->canSeeNumberOfElements('.level-1.delta', 2);
 }
開發者ID:Barathi07,項目名稱:Netopeer-GUI,代碼行數:13,代碼來源:TuringConfigureCest.php

示例4: profielInzienStudent

 /**
  * Test for requirement 50 of student
  * @param  WebGuy $I [description]
  * @return [type]    [description]
  */
 public function profielInzienStudent(\WebGuy $I)
 {
     $I->amOnPage('/login');
     $I->see('Uren');
     $I->fillField('Username', 'student');
     $I->fillField('Password', 'student');
     $I->click('Login');
     $I->amOnPage('/student/1');
     $I->see('Student Page');
     $I->wantTo('Profiel Inzien');
     $I->click('Profiel');
     $I->amOnPage('/student/1/profiel');
     $I->see('student');
     $I->see('I12R');
 }
開發者ID:jkaan,項目名稱:Time-Registration,代碼行數:20,代碼來源:StudentCest.php

示例5: testEditConfig

 public function testEditConfig(WebGuy $I)
 {
     $I->wantTo('create new interface using submit button');
     $inputValue = 'test-name' . time();
     $I->click('.create-child[rel="--*--*?3!"]');
     CommonScenarios::waitAndClickInTypeahead($I, 'group');
     $I->waitForElement('input.value[name*="--*--*?3!--*?1!--*?1!"]');
     $I->fillField('input.value[name*="--*--*?3!--*?1!--*?1!"]', $inputValue);
     $I->click('Create new node');
     $I->waitForElementNotVisible('#ajax-spinner');
     $I->wait(2);
     //		$I->canSee($inputValue);
     CommonScenarios::checkNumberOfFlashes($I, 1);
     $I->canSee('group');
 }
開發者ID:Barathi07,項目名稱:Netopeer-GUI,代碼行數:15,代碼來源:NacmConfigureCest.php

示例6: testUserSignup

 /**
  * 
  * @param \WebGuy $I
  * @param \Codeception\Scenario $scenario
  */
 public function testUserSignup($I, $scenario)
 {
     $I->wantTo('ensure that signup works');
     $signupPage = SignupPage::openBy($I);
     $I->see('Please fill out the following fields to signup:');
     $I->amGoingTo('submit signup form with no data');
     $signupPage->submit([]);
     $I->expectTo('see validation errors');
     $I->see('Username cannot be blank.');
     $I->see('Email cannot be blank.');
     $I->see('Password cannot be blank.');
     $I->amGoingTo('submit signup form with not correct email');
     $signupPage->submit(['username' => 'tester', 'email' => 'tester.email', 'password' => 'tester_password']);
     $I->expectTo('see that email adress is wrong');
     $I->dontSee('Username cannot be blank.', '.help-inline');
     $I->dontSee('Password cannot be blank.', '.help-inline');
     $I->see('Email is not a valid email address.', '.help-block');
     $I->amGoingTo('submit signup form with correct email');
     $signupPage->submit(['username' => 'tester', 'email' => 'tester.email@example.com', 'password' => 'tester_password']);
     $I->expectTo('see that user logged in');
     $I->see('Logout (tester)');
 }
開發者ID:jackycgq,項目名稱:advanced-1,代碼行數:27,代碼來源:SignupCest.php

示例7: seeVisualChangesAfterSizeChanges

 /**
  * Comparing a div, that change it's size
  */
 public function seeVisualChangesAfterSizeChanges(WebGuy $I, $scenario)
 {
     $I->amOnPage("/VisualCeption/notSameSize.php");
     $I->seeVisualChanges("getRedDiv", "div");
     $I->wait(1);
     // the test has to be called twice for comparison on the travis server
     $I->amOnPage("/VisualCeption/notSameSize.php");
     $I->seeVisualChanges("getRedDiv", "div");
 }
開發者ID:Kuzmenkovs,項目名稱:codeception-module-visualception,代碼行數:12,代碼來源:NotSameSizeCest.php

示例8: dontSeeVisualChangesAndHideElement

 public function dontSeeVisualChangesAndHideElement(WebGuy $I, $scenario)
 {
     $I->amOnPage("/VisualCeption/seeVisualChanges.php");
     $I->dontSeeVisualChanges("hideTheBlock", "body", "#theblock");
     $I->wait(1);
     // the test has to be called twice for comparison on the travis server
     $I->amOnPage("/VisualCeption/seeVisualChanges.php");
     $I->dontSeeVisualChanges("hideTheBlock", "body", array("#theblock"));
 }
開發者ID:Kuzmenkovs,項目名稱:codeception-module-visualception,代碼行數:9,代碼來源:TimeComparisonCest.php

示例9: writeCurrentImageFile

 /**
  * fail the test. lookup is current image is written
  */
 public function writeCurrentImageFile(WebGuy $I, $scenario)
 {
     $I->amOnPage("/VisualCeption/seeVisualChanges.php");
     $I->dontSeeVisualChanges("currentImageIdentifier", "#theblock");
     $I->wait(2);
     // the test has to be called twice for comparison on the travis server
     // expect failing the test
     $I->amOnPage("/VisualCeption/seeVisualChanges.php");
     try {
         $I->dontSeeVisualChanges("currentImageIdentifier", "#theblock");
     } catch (ImageDeviationException $exception) {
         $currentImagePath = $exception->getCurrentImage();
         if (!is_file($exception->getCurrentImage())) {
             throw new \PHPUnit_Framework_ExpectationFailedException("The screenshot was not saved successfully.");
         }
     }
 }
開發者ID:Kuzmenkovs,項目名稱:codeception-module-visualception,代碼行數:20,代碼來源:WriteCurrentImageCest.php

示例10: WebGuy

<?php

/*
 * This file is part of the Webception package.
 *
 * (c) James Healey <jayhealey@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
$I = new WebGuy($scenario);
$I->wantTo('check AJAX call when the Codeception log check fails.');
$I->sendGET('logs?test=log_fail');
$I->seeResponseContainsJson(array('ready' => false, 'error' => "The Codeception Log directory does not exist. Please check the following path exists:"));
開發者ID:24hours,項目名稱:Webception,代碼行數:14,代碼來源:CheckAJAXWhenLogFailsCept.php

示例11: WebGuy

<?php

$I = new WebGuy($scenario);
include 'constant.php';
$I->wantTo('Register new user');
$I->amOnPage("/");
$I->see('Registration');
$I->see('Login');
$I->see('Genre');
$I->see('Stations');
$I->click(Registration::$registrationlink);
$I->waitForText('Sign Up');
$I->see('Sign Up');
$I->seeElement(Registration::$username);
$I->seeElement(Registration::$emailField);
$I->seeElement(Registration::$passwordField);
$I->seeElement(Registration::$confirmPasswordField);
$I->seeElement(Registration::$registrationButton);
$I->fillField(Registration::$username, $username);
$I->fillField(Registration::$emailField, $email);
$I->fillField(Registration::$passwordField, $pass);
$I->fillField(Registration::$confirmPasswordField, $pass_conf);
$I->click(Registration::$registrationButton);
開發者ID:unlimUA,項目名稱:Codeception,代碼行數:23,代碼來源:registrationCept.php

示例12: WebGuy

<?php

/**
 *
 * @var $scenario \Codeception\Scenario
 *
 * @author Brett O'Donnell <cornernote@gmail.com>
 * @author Zain Ul abidin <zainengineer@gmail.com>
 * @copyright 2013 Mr PHP
 * @link https://github.com/cornernote/yii-audit-module
 * @license BSD-3-Clause https://raw.github.com/cornernote/yii-audit-module/master/LICENSE
 *
 * @package yii-audit-module
 */
$I = new WebGuy($scenario);
$I->wantTo('ensure method call on non-object is caught');
$I->amOnPage('site/methodOnNonObject');
$I->see('PHP error');
$I->see('Fatal error: Call to a member function iAmNotAnObject() on a non-object');
$I->canSeeInDatabase('audit_error', array('code' => '500', 'type' => 'PHP error', 'message' => 'Fatal error: Call to a member function iAmNotAnObject() on a non-object'));
開發者ID:Horlacher,項目名稱:yii-audit-module,代碼行數:20,代碼來源:AuditErrorHandlerMethodOnNonObjectCept.php

示例13: WebGuy

<?php

$I = new WebGuy($scenario);
$I->wantTo('call friends to try multi session');
$I->amOnPage('/info');
$jon = $I->haveFriend('jon');
$jon->does(function (WebGuy $I) {
    $I->amOnPage('/');
    $I->seeInCurrentUrl('/');
});
$I->seeInCurrentUrl('/info');
開發者ID:hitechdk,項目名稱:Codeception,代碼行數:11,代碼來源:FriendsCept.php

示例14: WebGuy

<?php

$I = new WebGuy($scenario);
$I->wantTo('base check rsg2-thumb-scroller for picture ');
// Direct call
//$I->amOnPage('http://127.0.0.1/Joomla3x/index.php/rsg2-thumb-scroller');
$I->amOnPage('/index.php/rsg2-thumb-scroller');
$I->makeScreenshot('base-rsg2-thumb-scroller');
// Where i want to be
$I->see('RSG2 thumb scroller');
開發者ID:RSGallery2,項目名稱:RoboLiTasks,代碼行數:10,代碼來源:BaseViewThumbScrollerCept.php

示例15: WebGuy

<?php

$I = new WebGuy($scenario);
$I->wantTo('Ensure the index page works');
$I->amOnPage('/');
$I->see('LEERJAAR 1');
$I->see('LEERJAAR 2');
$I->see('LEERJAAR 3');
$I->see('LEERJAAR 4');
$I->see('CONTACT');
$I->see('info@hogeschoolzeeland.nl');
開發者ID:jkaan,項目名稱:Prince2-App,代碼行數:11,代碼來源:HomepageCept.php


注:本文中的WebGuy類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。