You are here

public function Browser::select in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Browser/Browser.php \Zumba\GastonJS\Browser\Browser::select()

Selects a value in the given element and page

Parameters

$pageId:

$elementId:

$value:

Return value

mixed

File

vendor/jcalderonzumba/gastonjs/src/Browser/Browser.php, line 95

Class

Browser
Class Browser @package Zumba\GastonJS

Namespace

Zumba\GastonJS\Browser

Code

public function select($pageId, $elementId, $value) {
  return $this
    ->command('select', $pageId, $elementId, $value);
}