Files
faveo/vendor/php-webdriver/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php
RafficMohammed da241bacb6 updated-packages
2023-01-08 00:13:22 +05:30

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);
}
}