WPWebDriver
WPWebDriver module
This module drives a browser using a solution like Selenium or Chromedriver to simulate user interactions with the WordPress project.
The module has full Javascript support, differently from the WPBrowser module, and can be used to test sites that use Javascript to render the page or to make assertions that require Javascript support.
The method extends the Codeception WebDriver module and is used in the context of Cest and Cept test cases.
Configuration
browser
- the browser to use; e.g. 'chrome'host
- the host to use; e.g. 'localhost'. This is the host of the Selenium server or the Chromedriver server.port
- the port to use; e.g. '4444'. This is the port of the Selenium server or the Chromedriver server.path
- the path to use; e.g. '/wd/hub' or '/'. Use '/' for Chrome.url
- required; the start URL of your WordPress project.adminUsername
- required; the site administrator username to use in actions likeloginAsAdmin
.adminPassword
- required; the site administrator password to use in actions likeloginAsAdmin
.adminPath
- the path to the WordPress admin directory; defaults to/wp-admin
.
More configuration options, and their explanation, are available in the Codeception WebDriver module documentation.
The following is an example of the module configuration to run tests on thehttp://localhost:8080
site:
modules:
enabled:
lucatume\WPBrowser\Module\WPBrowser:
url: 'http://localhost:8080'
adminUsername: 'admin'
adminPassword: 'password'
adminPath: '/wp-admin'
browser: chrome
host: 'localhost'
port: '4444'
path: '/'
window_size: false
capabilities:
"goog:chromeOptions":
args:
- "--headless"
- "--disable-gpu"
- "--disable-dev-shm-usage"
- "--proxy-server='direct://'"
- "--proxy-bypass-list=*"
- "--no-sandbox"
The following configuration uses dynamic configuration parameters to set the module configuration:
modules:
enabled:
lucatume\WPBrowser\Module\WPBrowser:
url: 'http://localhost:8080'
adminUsername: 'admin'
adminPassword: 'password'
adminPath: '/wp-admin'
browser: chrome
host: '%CHROME_HOST%'
port: '%CHROME_PORT%'
path: '/'
window_size: `1920,1080`
capabilities:
"goog:chromeOptions":
args:
- "--headless"
- "--disable-gpu"
- "--disable-dev-shm-usage"
- "--proxy-server='direct://'"
- "--proxy-bypass-list=*"
- "--no-sandbox"
Furthermore, the above configuration will not run Chrome in headless mode: the browser window will be visible.
Methods
The module provides the following methods:
acceptPopup
Signature: acceptPopup()
: void
Accepts the active JavaScript native popup window, as created by window.alert
|window.confirm
|window.prompt
.
Don't confuse popups with modal windows,
as created by various libraries.
activatePlugin
Signature: activatePlugin(array|string $pluginSlug)
: void
In the plugin administration screen activates one or more plugins clicking the "Activate" link.
The method will not handle authentication and navigation to the plugins administration page.
<?php
// Activate a plugin.
$I->loginAsAdmin();
$I->amOnPluginsPage();
$I->activatePlugin('hello-dolly');
// Activate a list of plugins.
$I->loginAsAdmin();
$I->amOnPluginsPage();
$I->activatePlugin(['hello-dolly','another-plugin']);
activateTheme
Signature: activateTheme(string $slug)
: void
Activates a theme.
The method will not handle authentication and navigation to the themes administration page.
amEditingPostWithId
Signature: amEditingPostWithId(int $id)
: void
Go to the admin page to edit the post with the specified ID.
The method will not handle authentication the admin area.
<?php
$I->loginAsAdmin();
$postId = $I->havePostInDatabase();
$I->amEditingPostWithId($postId);
$I->fillField('post_title', 'Post title');
amEditingUserWithId
Signature: amEditingUserWithId(int $id)
: void
Go to the admin page to edit the user with the specified ID.
The method will not handle authentication the admin area.
<?php
$I->loginAsAdmin();
$userId = $I->haveUserInDatabase('luca', 'editor');
$I->amEditingUserWithId($userId);
$I->fillField('email', 'new@example.net');
amOnAdminAjaxPage
Signature: amOnAdminAjaxPage([array|string|null $queryVars])
: void
Go to the admin-ajax.php
page to start a synchronous, and blocking, GET
AJAX request.
The method will not handle authentication, nonces or authorization.
amOnAdminPage
Signature: amOnAdminPage(string $page)
: void
Go to a page in the admininstration area of the site.
This method will not handle authentication to the administration area.
<?php
$I->loginAs('user', 'password');
// Go to the plugins management screen.
$I->amOnAdminPage('/plugins.php');
amOnCronPage
Signature: amOnCronPage([array|string|null $queryVars])
: void
Go to the cron page to start a synchronous, and blocking, GET
request to the cron script.
<?php
// Triggers the cron job with an optional query argument.
$I->amOnCronPage('/?some-query-var=some-value');
amOnPage
Signature: amOnPage($page)
: void
amOnPagesPage
Signature: amOnPagesPage()
: void
Go the "Pages" administration screen.
The method will not handle authentication.
amOnPluginsPage
Signature: amOnPluginsPage()
: void
Go to the plugins administration screen.
The method will not handle authentication.
amOnSubdomain
Signature: amOnSubdomain(string $subdomain)
: void
amOnThemesPage
Signature: amOnThemesPage()
: void
Moves to the themes administration page.
amOnUrl
Signature: amOnUrl($url)
: void
appendField
Signature: appendField($field, string $value)
: void
Append the given text to the given element. Can also add a selection to a select box.
attachFile
Signature: attachFile($field, string $filename)
: void
cancelPopup
Signature: cancelPopup()
: void
Dismisses the active JavaScript popup, as created by window.alert
, window.confirm
, or window.prompt
.
checkOption
Signature: checkOption($option)
: void
clearField
Signature: clearField($field)
: void
Clears given field which isn't empty.
click
Signature: click($link, [$context])
: void
clickWithLeftButton
Signature: clickWithLeftButton([$cssOrXPath], [?int $offsetX], [?int $offsetY])
: void
Performs click with the left mouse button on an element.
If the first parameter null
then the offset is relative to the actual mouse position.
If the second and third parameters are given,
then the mouse is moved to an offset of the element's top-left corner.
Otherwise, the mouse is moved to the center of the element.
<?php
$I->clickWithLeftButton(['css' => '.checkout']);
$I->clickWithLeftButton(null, 20, 50);
$I->clickWithLeftButton(['css' => '.checkout'], 20, 50);
clickWithRightButton
Signature: clickWithRightButton([$cssOrXPath], [?int $offsetX], [?int $offsetY])
: void
Performs contextual click with the right mouse button on an element.
If the first parameter null
then the offset is relative to the actual mouse position.
If the second and third parameters are given,
then the mouse is moved to an offset of the element's top-left corner.
Otherwise, the mouse is moved to the center of the element.
<?php
$I->clickWithRightButton(['css' => '.checkout']);
$I->clickWithRightButton(null, 20, 50);
$I->clickWithRightButton(['css' => '.checkout'], 20, 50);
closeTab
Signature: closeTab()
: void
Closes current browser tab and switches to previous active tab.
deactivatePlugin
Signature: deactivatePlugin(array|string $pluginSlug)
: void
In the plugin administration screen deactivate a plugin clicking the "Deactivate" link.
The method will not handle authentication and navigation to the plugins administration page.
<?php
// Deactivate one plugin.
$I->loginAsAdmin();
$I->amOnPluginsPage();
$I->deactivatePlugin('hello-dolly');
// Deactivate a list of plugins.
$I->loginAsAdmin();
$I->amOnPluginsPage();
$I->deactivatePlugin(['hello-dolly', 'my-plugin']);
debugWebDriverLogs
Signature: debugWebDriverLogs([?Codeception\TestInterface $test])
: void
Print out latest Selenium Logs in debug mode
deleteSessionSnapshot
Signature: deleteSessionSnapshot($name)
: void
dontSee
Signature: dontSee($text, [$selector])
: void
dontSeeCheckboxIsChecked
Signature: dontSeeCheckboxIsChecked($checkbox)
: void
dontSeeCookie
Signature: dontSeeCookie($cookie, [array $params], [bool $showDebug])
: void
dontSeeCurrentUrlEquals
Signature: dontSeeCurrentUrlEquals(string $uri)
: void
dontSeeCurrentUrlMatches
Signature: dontSeeCurrentUrlMatches(string $uri)
: void
dontSeeElement
Signature: dontSeeElement($selector, [array $attributes])
: void
dontSeeElementInDOM
Signature: dontSeeElementInDOM($selector, [array $attributes])
: void
Opposite of seeElementInDOM
.
dontSeeInCurrentUrl
Signature: dontSeeInCurrentUrl(string $uri)
: void
dontSeeInField
Signature: dontSeeInField($field, $value)
: void
dontSeeInFormFields
Signature: dontSeeInFormFields($formSelector, array $params)
: void
dontSeeInPageSource
Signature: dontSeeInPageSource(string $text)
: void
Checks that the page source doesn't contain the given string.
dontSeeInPopup
Signature: dontSeeInPopup(string $text)
: void
Checks that the active JavaScript popup,
as created by window.alert
|window.confirm
|window.prompt
, does NOT contain the given string.
dontSeeInSource
Signature: dontSeeInSource($raw)
: void
dontSeeInTitle
Signature: dontSeeInTitle($title)
: void
dontSeeLink
Signature: dontSeeLink(string $text, [string $url])
: void
dontSeeOptionIsSelected
Signature: dontSeeOptionIsSelected($selector, $optionText)
: void
dontSeePluginInstalled
Signature: dontSeePluginInstalled(string $pluginSlug)
: void
Assert a plugin is not installed in the plugins administration screen.
The method will not handle authentication and navigation to the plugin administration screen.
doubleClick
Signature: doubleClick($cssOrXPath)
: void
Performs a double click on an element matched by CSS or XPath.
dragAndDrop
Signature: dragAndDrop($source, $target)
: void
Performs a simple mouse drag-and-drop operation.
executeAsyncJS
Signature: executeAsyncJS(string $script, [array $arguments])
: void
Executes asynchronous JavaScript.
A callback should be executed by JavaScript to exit from a script.
Callback is passed as a last element in arguments
array.
Additional arguments can be passed as array in second parameter.
// wait for 1200 milliseconds my running `setTimeout`
* $I->executeAsyncJS('setTimeout(arguments[0], 1200)');
$seconds = 1200; // or seconds are passed as argument
$I->executeAsyncJS('setTimeout(arguments[1], arguments[0])', [$seconds]);
executeInSelenium
Signature: executeInSelenium(Closure $function)
: void
Low-level API method. If Codeception commands are not enough, this allows you to use Selenium WebDriver methods directly:
$I->executeInSelenium(function(\Facebook\WebDriver\Remote\RemoteWebDriver $webdriver) {
$webdriver->get('https://google.com');
});
This runs in the context of the RemoteWebDriver class. Try not to use this command on a regular basis. If Codeception lacks a feature you need, please implement it and submit a patch.
executeJS
Signature: executeJS(string $script, [array $arguments])
: void
Executes custom JavaScript.
This example uses jQuery to get a value and assigns that value to a PHP variable:
<?php
$myVar = $I->executeJS('return $("#myField").val()');
// additional arguments can be passed as array
// Example shows `Hello World` alert:
$I->executeJS("window.alert(arguments[0])", ['Hello world']);
fillField
Signature: fillField($field, $value)
: void
grabActiveTheme
Signature: grabActiveTheme()
: ?string
Returns the slug of the currently active themes.
The method will not handle authentication and navigation to the themes administration page.
grabAttributeFrom
Signature: grabAttributeFrom($cssOrXpath, $attribute)
: ?string
grabAvailableThemes
Signature: grabAvailableThemes([string $classes])
: array
Returns the list of available themes.
The method will not handle authentication and navigation to the themes administration page.
grabCookie
Signature: grabCookie($cookie, [array $params])
: mixed
grabCookiesWithPattern
Signature: grabCookiesWithPattern(string $cookiePattern)
: ?array
Returns all the cookies whose name matches a regex pattern.
<?php
$I->loginAs('customer','password');
$I->amOnPage('/shop');
$cartCookies = $I->grabCookiesWithPattern("#^shop_cart\\.*#");
grabFromCurrentUrl
Signature: grabFromCurrentUrl([$uri])
: mixed
grabFullUrl
Signature: grabFullUrl()
: string
Grabs the current page full URL including the query vars.
<?php
$today = date('Y-m-d');
$I->amOnPage('/concerts?date=' . $today);
$I->assertRegExp('#\\/concerts$#', $I->grabFullUrl());
grabMultiple
Signature: grabMultiple($cssOrXpath, [$attribute])
: array
grabPageSource
Signature: grabPageSource()
: string
Grabs current page source code.
grabTextFrom
Signature: grabTextFrom($cssOrXPathOrRegex)
: mixed
grabValueFrom
Signature: grabValueFrom($field)
: ?string
grabWordPressTestCookie
Signature: grabWordPressTestCookie([?string $name])
: ?Symfony\Component\BrowserKit\Cookie
Returns WordPress default test cookie object if present.
<?php
// Grab the default WordPress test cookie.
$wpTestCookie = $I->grabWordPressTestCookie();
// Grab a customized version of the test cookie.
$myTestCookie = $I->grabWordPressTestCookie('my_test_cookie');
loadSessionSnapshot
Signature: loadSessionSnapshot($name, [bool $showDebug])
: bool
logOut
Signature: logOut([string|bool $redirectTo])
: void
Navigate to the default WordPress logout page and click the logout link.
<?php
// Log out using the `wp-login.php` form and return to the current page.
$I->logOut(true);
// Log out using the `wp-login.php` form and remain there.
$I->logOut(false);
// Log out using the `wp-login.php` form and move to another page.
$I->logOut('/some-other-page');
loginAs
Signature: loginAs(string $username, string $password, [int $timeout], [int $maxAttempts])
: void
Login as the specified user.
The method will not follow redirection, after the login, to any page. Depending on the driven browser the login might be "too fast" and the server might have not replied with valid cookies yet; in that case the method will re-attempt the login to obtain the cookies.
loginAsAdmin
Signature: loginAsAdmin([int $timeout], [int $maxAttempts])
: void
Login as the administrator user using the credentials specified in the module configuration.
The method will not follow redirection, after the login, to any page.
makeElementScreenshot
Signature: makeElementScreenshot($selector, [?string $name])
: void
Takes a screenshot of an element of the current window and saves it to tests/_output/debug
.
<?php
$I->amOnPage('/user/edit');
$I->makeElementScreenshot('#dialog', 'edit_page');
// saved to: tests/_output/debug/edit_page.png
$I->makeElementScreenshot('#dialog');
// saved to: tests/_output/debug/2017-05-26_14-24-11_4b3403665fea6.png
makeHtmlSnapshot
Signature: makeHtmlSnapshot([?string $name])
: void
makeScreenshot
Signature: makeScreenshot([?string $name])
: void
Takes a screenshot of the current window and saves it to tests/_output/debug
.
<?php
$I->amOnPage('/user/edit');
$I->makeScreenshot('edit_page');
// saved to: tests/_output/debug/edit_page.png
$I->makeScreenshot();
// saved to: tests/_output/debug/2017-05-26_14-24-11_4b3403665fea6.png
maximizeWindow
Signature: maximizeWindow()
: void
Maximizes the current window.
moveBack
Signature: moveBack()
: void
Moves back in history.
moveForward
Signature: moveForward()
: void
Moves forward in history.
moveMouseOver
Signature: moveMouseOver([$cssOrXPath], [?int $offsetX], [?int $offsetY])
: void
Move mouse over the first element matched by the given locator. If the first parameter null then the page is used. If the second and third parameters are given, then the mouse is moved to an offset of the element's top-left corner. Otherwise, the mouse is moved to the center of the element.
<?php
$I->moveMouseOver(['css' => '.checkout']);
$I->moveMouseOver(null, 20, 50);
$I->moveMouseOver(['css' => '.checkout'], 20, 50);
openNewTab
Signature: openNewTab()
: void
Opens a new browser tab and switches to it.
The tab is opened with JavaScript'swindow.open()
, which means:
* Some ad-blockers might restrict it.
* The sessionStorage is copied to the new tab (contrary to a tab that was manually opened by the user)
performOn
Signature: performOn($element, $actions, [int $timeout])
: void
Waits for element and runs a sequence of actions inside its context.
Actions can be defined with array, callback, or Codeception\Util\ActionSequence
instance.
Actions as array are recommended for simple to combine "waitForElement" with assertions;
waitForElement($el)
and see('text', $el)
can be simplified to:
List of actions can be pragmatically build using Codeception\Util\ActionSequence
:
<?php
$I->performOn('.model', ActionSequence::build()
->see('Warning')
->see('Are you sure you want to delete this?')
->click('Yes')
);
Actions executed from array or ActionSequence will print debug output for actions, and adds an action name to exception on failure.
Whenever you need to define more actions a callback can be used. A WebDriver module is passed for argument:
<?php
$I->performOn('.rememberMe', function (WebDriver $I) {
$I->see('Remember me next time');
$I->seeElement('#LoginForm_rememberMe');
$I->dontSee('Login');
});
In 3rd argument you can set number a seconds to wait for element to appear
pressKey
Signature: pressKey($element, [...$chars])
: void
Presses the given key on the given element.
To specify a character and modifier (e.g. Ctrl, Alt, Shift, Meta), pass an array for $char
with
the modifier as the first element and the character as the second.
For special keys, use the constants from Facebook\WebDriver\WebDriverKeys
.
<?php
// <input id="page" value="old" />
$I->pressKey('#page','a'); // => olda
$I->pressKey('#page',array('ctrl','a'),'new'); //=> new
$I->pressKey('#page',array('shift','111'),'1','x'); //=> old!!!1x
$I->pressKey('descendant-or-self::*[@id='page']','u'); //=> oldu
$I->pressKey('#name', array('ctrl', 'a'), \Facebook\WebDriver\WebDriverKeys::DELETE); //=>''
reloadPage
Signature: reloadPage()
: void
Reloads the current page.
resetCookie
Signature: resetCookie($cookie, [array $params], [bool $showDebug])
: void
resizeWindow
Signature: resizeWindow(int $width, int $height)
: void
Resize the current window.
saveSessionSnapshot
Signature: saveSessionSnapshot($name)
: void
scrollTo
Signature: scrollTo($selector, [?int $offsetX], [?int $offsetY])
: void
Move to the middle of the given element matched by the given locator. Extra shift, calculated from the top-left corner of the element, can be set by passing $offsetX and $offsetY parameters.
see
Signature: see($text, [$selector])
: void
seeCheckboxIsChecked
Signature: seeCheckboxIsChecked($checkbox)
: void
seeCookie
Signature: seeCookie($cookie, [array $params], [bool $showDebug])
: void
seeCurrentUrlEquals
Signature: seeCurrentUrlEquals(string $uri)
: void
seeCurrentUrlMatches
Signature: seeCurrentUrlMatches(string $uri)
: void
seeElement
Signature: seeElement($selector, [array $attributes])
: void
seeElementInDOM
Signature: seeElementInDOM($selector, [array $attributes])
: void
Checks that the given element exists on the page, even it is invisible.
seeErrorMessage
Signature: seeErrorMessage([array|string $classes])
: void
In an administration screen look for an error admin notice.
The check is class-based to decouple from internationalization. The method will not handle authentication and navigation the administration area.
seeInCurrentUrl
Signature: seeInCurrentUrl(string $uri)
: void
seeInField
Signature: seeInField($field, $value)
: void
seeInFormFields
Signature: seeInFormFields($formSelector, array $params)
: void
seeInPageSource
Signature: seeInPageSource(string $text)
: void
Checks that the page source contains the given string.
seeInPopup
Signature: seeInPopup(string $text)
: void
Checks that the active JavaScript popup,
as created by window.alert
|window.confirm
|window.prompt
, contains the given string.
seeInSource
Signature: seeInSource($raw)
: void
seeInTitle
Signature: seeInTitle($title)
: void
seeLink
Signature: seeLink(string $text, [?string $url])
: void
seeMessage
Signature: seeMessage([array|string $classes])
: void
In an administration screen look for an admin notice.
The check is class-based to decouple from internationalization. The method will not handle authentication and navigation the administration area.
seeNumberOfElements
Signature: seeNumberOfElements($selector, $expected)
: void
seeNumberOfElementsInDOM
Signature: seeNumberOfElementsInDOM($selector, $expected)
: void
seeNumberOfTabs
Signature: seeNumberOfTabs(int $number)
: void
Checks current number of opened tabs
seeOptionIsSelected
Signature: seeOptionIsSelected($selector, $optionText)
: void
seePluginActivated
Signature: seePluginActivated(string $pluginSlug)
: void
Assert a plugin is activated in the plugin administration screen.
The method will not handle authentication and navigation to the plugin administration screen.
seePluginDeactivated
Signature: seePluginDeactivated(string $pluginSlug)
: void
Assert a plugin is not activated in the plugins administration screen.
The method will not handle authentication and navigation to the plugin administration screen.
seePluginInstalled
Signature: seePluginInstalled(string $pluginSlug)
: void
Assert a plugin is installed, no matter its activation status, in the plugin administration screen.
The method will not handle authentication and navigation to the plugin administration screen.
seeThemeActivated
Signature: seeThemeActivated(string $slug)
: void
Verifies that a theme is active.
The method will not handle authentication and navigation to the themes administration page.
seeWpDiePage
Signature: seeWpDiePage()
: void
Checks that the current page is one generated by the wp_die
function.
The method will try to identify the page based on the default WordPress die page HTML attributes.
selectOption
Signature: selectOption($select, $option)
: void
setCookie
Signature: setCookie($name, $value, [array $params], [$showDebug])
: void
submitForm
Signature: submitForm($selector, array $params, [$button])
: void
Submits the given form on the page, optionally with the given form values. Give the form fields values as an array. Note that hidden fields can't be accessed.
Skipped fields will be filled by their values from the page. You don't need to click the 'Submit' button afterwards. This command itself triggers the request to form's action.
You can optionally specify what button's value to include in the request with the last parameter as an alternative to explicitly setting its value in the second parameter, as button values are not otherwise included in the request.
Examples:
<?php
$I->submitForm('#login', [
'login' => 'davert',
'password' => '123456'
]);
// or
$I->submitForm('#login', [
'login' => 'davert',
'password' => '123456'
], 'submitButtonName');
For example, given this sample "Sign Up" form:
<form action="/sign_up">
Login:
<input type="text" name="user[login]" /><br/>
Password:
<input type="password" name="user[password]" /><br/>
Do you agree to our terms?
<input type="checkbox" name="user[agree]" /><br/>
Select pricing plan:
<select name="plan">
<option value="1">Free</option>
<option value="2" selected="selected">Paid</option>
</select>
<input type="submit" name="submitButton" value="Submit" />
</form>
You could write the following to submit it:
<?php
$I->submitForm(
'#userForm',
[
'user[login]' => 'Davert',
'user[password]' => '123456',
'user[agree]' => true
],
'submitButton'
);
Also note that this differs from PhpBrowser, in that
'user' => [ 'login' => 'Davert' ]
is not supported at the moment.
Named array keys must be included in the name as above.
Pair this with seeInFormFields for quick testing magic.
<?php
$form = [
'field1' => 'value',
'field2' => 'another value',
'checkbox1' => true,
// ...
];
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
// $I->amOnPage('/path/to/form-page') may be needed
$I->seeInFormFields('//form[@id=my-form]', $form);
Parameter values must be set to arrays for multiple input fields of the same name, or multi-select combo boxes. For checkboxes, either the string value can be used, or boolean values which will be replaced by the checkbox's value in the DOM.
<?php
$I->submitForm('#my-form', [
'field1' => 'value',
'checkbox' => [
'value of first checkbox',
'value of second checkbox',
],
'otherCheckboxes' => [
true,
false,
false,
],
'multiselect' => [
'first option value',
'second option value',
]
]);
Mixing string and boolean values for a checkbox's value is not supported and may produce unexpected results.
Field names ending in "[]" must be passed without the trailing square bracket characters, and must contain an array for its value. This allows submitting multiple values with the same name, consider:
<?php
$I->submitForm('#my-form', [
'field[]' => 'value',
'field[]' => 'another value', // 'field[]' is already a defined key
]);
The solution is to pass an array value:
<?php
// this way both values are submitted
$I->submitForm('#my-form', [
'field' => [
'value',
'another value',
]
]);
The $button
parameter can be either a string, an array or an instance
of Facebook\WebDriver\WebDriverBy. When it is a string, the
button will be found by its "name" attribute. If $button is an
array then it will be treated as a strict selector and a WebDriverBy
will be used verbatim.
For example, given the following HTML:
$button
could be any one of the following:
- 'submitButton'
- ['name' => 'submitButton']
- WebDriverBy::name('submitButton')
switchToFrame
Signature: switchToFrame([?string $locator])
: void
Switch to another frame on the page.
Example:
<?php
# switch to frame by name
$I->switchToFrame("another_frame");
# switch to frame by CSS or XPath
$I->switchToFrame("#fr1");
# switch to parent page
$I->switchToFrame();
switchToIFrame
Signature: switchToIFrame([?string $locator])
: void
Switch to another iframe on the page.
Example:
<?php
# switch to iframe by name
$I->switchToIFrame("another_frame");
# switch to iframe by CSS or XPath
$I->switchToIFrame("#fr1");
# switch to parent page
$I->switchToIFrame();
switchToNextTab
Signature: switchToNextTab([int $offset])
: void
Switches to next browser tab. An offset can be specified.
<?php
// switch to next tab
$I->switchToNextTab();
// switch to 2nd next tab
$I->switchToNextTab(2);
switchToPreviousTab
Signature: switchToPreviousTab([int $offset])
: void
Switches to previous browser tab. An offset can be specified.
<?php
// switch to previous tab
$I->switchToPreviousTab();
// switch to 2nd previous tab
$I->switchToPreviousTab(2);
switchToWindow
Signature: switchToWindow([?string $name])
: void
Switch to another window identified by name.
The window can only be identified by name. If the $name parameter is blank, the parent window will be used.
Example:
<input type="button" value="Open window" onclick="window.open('https://example.com', 'another_window')">
<?php
$I->click("Open window");
# switch to another window
$I->switchToWindow("another_window");
# switch to parent window
$I->switchToWindow();
If the window has no name, match it by switching to next active tab using switchToNextTab
method.
Or use native Selenium functions to get access to all opened windows:
<?php
$I->executeInSelenium(function (\Facebook\WebDriver\Remote\RemoteWebDriver $webdriver) {
$handles=$webdriver->getWindowHandles();
$last_window = end($handles);
$webdriver->switchTo()->window($last_window);
});
type
Signature: type(string $text, [int $delay])
: void
Type in characters on active element. With a second parameter you can specify delay between key presses.
<?php
// activate input element
$I->click('#input');
// type text in active element
$I->type('Hello world');
// type text with a 1sec delay between chars
$I->type('Hello World', 1);
This might be useful when you an input reacts to typing and you need to slow it down to emulate human behavior. For instance, this is how Credit Card fields can be filled in.
typeInPopup
Signature: typeInPopup(string $keys)
: void
Enters text into a native JavaScript prompt popup, as created by window.prompt
.
uncheckOption
Signature: uncheckOption($option)
: void
unselectOption
Signature: unselectOption($select, $option)
: void
Unselect an option in the given select box.
wait
Signature: wait($timeout)
: void
Wait for $timeout seconds.
waitForElement
Signature: waitForElement($element, [int $timeout])
: void
Waits up to $timeout seconds for an element to appear on the page. If the element doesn't appear, a timeout exception is thrown.
waitForElementChange
Signature: waitForElementChange($element, Closure $callback, [int $timeout])
: void
Waits up to $timeout seconds for the given element to change. Element "change" is determined by a callback function which is called repeatedly until the return value evaluates to true.
<?php
use \Facebook\WebDriver\WebDriverElement
$I->waitForElementChange('#menu', function(WebDriverElement $el) {
return $el->isDisplayed();
}, 100);
waitForElementClickable
Signature: waitForElementClickable($element, [int $timeout])
: void
Waits up to $timeout seconds for the given element to be clickable. If element doesn't become clickable, a timeout exception is thrown.
waitForElementNotVisible
Signature: waitForElementNotVisible($element, [int $timeout])
: void
Waits up to $timeout seconds for the given element to become invisible. If element stays visible, a timeout exception is thrown.
waitForElementVisible
Signature: waitForElementVisible($element, [int $timeout])
: void
Waits up to $timeout seconds for the given element to be visible on the page. If element doesn't appear, a timeout exception is thrown.
waitForJS
Signature: waitForJS(string $script, [int $timeout])
: void
Executes JavaScript and waits up to $timeout seconds for it to return true.
In this example we will wait up to 60 seconds for all jQuery AJAX requests to finish.
waitForJqueryAjax
Signature: waitForJqueryAjax([int $time])
: void
Waits for any jQuery triggered AJAX request to be resolved.
waitForText
Signature: waitForText(string $text, [int $timeout], [$selector])
: void
Waits up to $timeout seconds for the given string to appear on the page.
Can also be passed a selector to search in, be as specific as possible when using selectors. waitForText() will only watch the first instance of the matching selector / text provided. If the given text doesn't appear, a timeout exception is thrown.
Read more in Codeception documentation.