You are here

public function Browser::sendKeys 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::sendKeys()

TODO: not sure what this does, needs to do normalizeKeys

Parameters

int $pageId:

int $elementId:

array $keys:

Return value

mixed

File

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

Class

Browser
Class Browser @package Zumba\GastonJS

Namespace

Zumba\GastonJS\Browser

Code

public function sendKeys($pageId, $elementId, $keys) {
  return $this
    ->command('send_keys', $pageId, $elementId, $this
    ->normalizeKeys($keys));
}