13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
namespace Facebook\WebDriver\Interactions\Internal;
|
|
|
|
class WebDriverKeyDownAction extends WebDriverSingleKeyAction
|
|
{
|
|
public function perform()
|
|
{
|
|
$this->focusOnElement();
|
|
$this->keyboard->pressKey($this->key);
|
|
}
|
|
}
|