Skip to content

Example command reference

daluu edited this page Dec 12, 2011 · 29 revisions

Example command reference

Overview

Here is my attempt at helping others learn to use this binding. Others out there who are more experienced with this PHP binding, please add to this page as you get to it please.

Working with elements

NOTE: some examples below may be done shorthand, in single line chained calls from the session object, though if we wanted to perform several actions on the same element, we could save the WebDriverElement into a variable and then make subsequent calls from that element.

Getting text of an element

$result = $session->element('id','signin')->text();

Clicking an element (link, checkbox, etc.)

//POST w/ empty data to click command.  using just click() may work for you too.
$session->element('id','signin')->click("");

Typing into text field

Values must be sent as an array of key presses.

You could use a function from another webdriver php project (https://github.com/chibimagic/WebDriver-PHP):

function split_keys($toSend){
    $payload = array("value" => preg_split("//u", $toSend, -1, PREG_SPLIT_NO_EMPTY));
    return $payload;
}

This can be used:

$session->element("id", "element id")->value(split_keys("I want to send this"))

Or more simply, it may work to just do:

$session->value(array('value' => str_split("I want to send this")));

Or you can try setting the text inputs value directly via javascript like this:

$script = 'arguments[0].value = arguments[1];';
$args = array(array('ELEMENT' => $this->getID()), "I want to send this")));
$session->execute(array('script' => $script, 'args' => $args));

Get attribute of an element

$attr = $session->element('id','signin')->attribute('maxlength');

Get value of an input element

$element->attribute("value"); //no direct method to call like $element->value();

More commands to come...

Clone this wiki locally