xref: /plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
1<?php
2
3namespace Facebook\WebDriver\Interactions\Internal;
4
5class WebDriverKeyUpAction extends WebDriverSingleKeyAction
6{
7    public function perform()
8    {
9        $this->focusOnElement();
10        $this->keyboard->releaseKey($this->key);
11    }
12}
13