├── .coveralls.yml ├── .php_cs.dist ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── composer.json ├── lib ├── AbstractWebDriverCheckboxOrRadio.php ├── Chrome │ ├── ChromeDriver.php │ ├── ChromeDriverService.php │ └── ChromeOptions.php ├── Cookie.php ├── Exception │ ├── ElementClickInterceptedException.php │ ├── ElementNotInteractableException.php │ ├── ElementNotSelectableException.php │ ├── ElementNotVisibleException.php │ ├── ExpectedException.php │ ├── IMEEngineActivationFailedException.php │ ├── IMENotAvailableException.php │ ├── IndexOutOfBoundsException.php │ ├── InsecureCertificateException.php │ ├── InvalidArgumentException.php │ ├── InvalidCookieDomainException.php │ ├── InvalidCoordinatesException.php │ ├── InvalidElementStateException.php │ ├── InvalidSelectorException.php │ ├── InvalidSessionIdException.php │ ├── JavascriptErrorException.php │ ├── MoveTargetOutOfBoundsException.php │ ├── NoAlertOpenException.php │ ├── NoCollectionException.php │ ├── NoScriptResultException.php │ ├── NoStringException.php │ ├── NoStringLengthException.php │ ├── NoStringWrapperException.php │ ├── NoSuchAlertException.php │ ├── NoSuchCollectionException.php │ ├── NoSuchCookieException.php │ ├── NoSuchDocumentException.php │ ├── NoSuchDriverException.php │ ├── NoSuchElementException.php │ ├── NoSuchFrameException.php │ ├── NoSuchWindowException.php │ ├── NullPointerException.php │ ├── ScriptTimeoutException.php │ ├── SessionNotCreatedException.php │ ├── StaleElementReferenceException.php │ ├── TimeoutException.php │ ├── UnableToCaptureScreenException.php │ ├── UnableToSetCookieException.php │ ├── UnexpectedAlertOpenException.php │ ├── UnexpectedJavascriptException.php │ ├── UnexpectedTagNameException.php │ ├── UnknownCommandException.php │ ├── UnknownErrorException.php │ ├── UnknownMethodException.php │ ├── UnknownServerException.php │ ├── UnrecognizedExceptionException.php │ ├── UnsupportedOperationException.php │ ├── WebDriverCurlException.php │ ├── WebDriverException.php │ └── XPathLookupException.php ├── Firefox │ ├── FirefoxDriver.php │ ├── FirefoxPreferences.php │ └── FirefoxProfile.php ├── Interactions │ ├── Internal │ │ ├── WebDriverButtonReleaseAction.php │ │ ├── WebDriverClickAction.php │ │ ├── WebDriverClickAndHoldAction.php │ │ ├── WebDriverContextClickAction.php │ │ ├── WebDriverCoordinates.php │ │ ├── WebDriverDoubleClickAction.php │ │ ├── WebDriverKeyDownAction.php │ │ ├── WebDriverKeyUpAction.php │ │ ├── WebDriverKeysRelatedAction.php │ │ ├── WebDriverMouseAction.php │ │ ├── WebDriverMouseMoveAction.php │ │ ├── WebDriverMoveToOffsetAction.php │ │ ├── WebDriverSendKeysAction.php │ │ └── WebDriverSingleKeyAction.php │ ├── Touch │ │ ├── WebDriverDoubleTapAction.php │ │ ├── WebDriverDownAction.php │ │ ├── WebDriverFlickAction.php │ │ ├── WebDriverFlickFromElementAction.php │ │ ├── WebDriverLongPressAction.php │ │ ├── WebDriverMoveAction.php │ │ ├── WebDriverScrollAction.php │ │ ├── WebDriverScrollFromElementAction.php │ │ ├── WebDriverTapAction.php │ │ ├── WebDriverTouchAction.php │ │ └── WebDriverTouchScreen.php │ ├── WebDriverActions.php │ ├── WebDriverCompositeAction.php │ └── WebDriverTouchActions.php ├── Internal │ └── WebDriverLocatable.php ├── JavaScriptExecutor.php ├── Net │ └── URLChecker.php ├── Remote │ ├── DesiredCapabilities.php │ ├── DriverCommand.php │ ├── ExecuteMethod.php │ ├── FileDetector.php │ ├── HttpCommandExecutor.php │ ├── JsonWireCompat.php │ ├── LocalFileDetector.php │ ├── RemoteExecuteMethod.php │ ├── RemoteKeyboard.php │ ├── RemoteMouse.php │ ├── RemoteStatus.php │ ├── RemoteTargetLocator.php │ ├── RemoteTouchScreen.php │ ├── RemoteWebDriver.php │ ├── RemoteWebElement.php │ ├── Service │ │ ├── DriverCommandExecutor.php │ │ └── DriverService.php │ ├── UselessFileDetector.php │ ├── WebDriverBrowserType.php │ ├── WebDriverCapabilityType.php │ ├── WebDriverCommand.php │ └── WebDriverResponse.php ├── Support │ ├── Events │ │ ├── EventFiringWebDriver.php │ │ ├── EventFiringWebDriverNavigation.php │ │ └── EventFiringWebElement.php │ └── XPathEscaper.php ├── WebDriver.php ├── WebDriverAction.php ├── WebDriverAlert.php ├── WebDriverBy.php ├── WebDriverCapabilities.php ├── WebDriverCheckboxes.php ├── WebDriverCommandExecutor.php ├── WebDriverDimension.php ├── WebDriverDispatcher.php ├── WebDriverElement.php ├── WebDriverEventListener.php ├── WebDriverExpectedCondition.php ├── WebDriverHasInputDevices.php ├── WebDriverKeyboard.php ├── WebDriverKeys.php ├── WebDriverMouse.php ├── WebDriverNavigation.php ├── WebDriverNavigationInterface.php ├── WebDriverOptions.php ├── WebDriverPlatform.php ├── WebDriverPoint.php ├── WebDriverRadios.php ├── WebDriverSearchContext.php ├── WebDriverSelect.php ├── WebDriverSelectInterface.php ├── WebDriverTargetLocator.php ├── WebDriverTimeouts.php ├── WebDriverUpAction.php ├── WebDriverWait.php └── WebDriverWindow.php ├── logs └── .gitkeep └── phpstan.neon /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/.php_cs.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/composer.json -------------------------------------------------------------------------------- /lib/AbstractWebDriverCheckboxOrRadio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/AbstractWebDriverCheckboxOrRadio.php -------------------------------------------------------------------------------- /lib/Chrome/ChromeDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Chrome/ChromeDriver.php -------------------------------------------------------------------------------- /lib/Chrome/ChromeDriverService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Chrome/ChromeDriverService.php -------------------------------------------------------------------------------- /lib/Chrome/ChromeOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Chrome/ChromeOptions.php -------------------------------------------------------------------------------- /lib/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Cookie.php -------------------------------------------------------------------------------- /lib/Exception/ElementClickInterceptedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/ElementClickInterceptedException.php -------------------------------------------------------------------------------- /lib/Exception/ElementNotInteractableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/ElementNotInteractableException.php -------------------------------------------------------------------------------- /lib/Exception/ElementNotSelectableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/ElementNotSelectableException.php -------------------------------------------------------------------------------- /lib/Exception/ElementNotVisibleException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/ElementNotVisibleException.php -------------------------------------------------------------------------------- /lib/Exception/ExpectedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/ExpectedException.php -------------------------------------------------------------------------------- /lib/Exception/IMEEngineActivationFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/IMEEngineActivationFailedException.php -------------------------------------------------------------------------------- /lib/Exception/IMENotAvailableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/IMENotAvailableException.php -------------------------------------------------------------------------------- /lib/Exception/IndexOutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/IndexOutOfBoundsException.php -------------------------------------------------------------------------------- /lib/Exception/InsecureCertificateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InsecureCertificateException.php -------------------------------------------------------------------------------- /lib/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /lib/Exception/InvalidCookieDomainException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InvalidCookieDomainException.php -------------------------------------------------------------------------------- /lib/Exception/InvalidCoordinatesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InvalidCoordinatesException.php -------------------------------------------------------------------------------- /lib/Exception/InvalidElementStateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InvalidElementStateException.php -------------------------------------------------------------------------------- /lib/Exception/InvalidSelectorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InvalidSelectorException.php -------------------------------------------------------------------------------- /lib/Exception/InvalidSessionIdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/InvalidSessionIdException.php -------------------------------------------------------------------------------- /lib/Exception/JavascriptErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/JavascriptErrorException.php -------------------------------------------------------------------------------- /lib/Exception/MoveTargetOutOfBoundsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/MoveTargetOutOfBoundsException.php -------------------------------------------------------------------------------- /lib/Exception/NoAlertOpenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoAlertOpenException.php -------------------------------------------------------------------------------- /lib/Exception/NoCollectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoCollectionException.php -------------------------------------------------------------------------------- /lib/Exception/NoScriptResultException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoScriptResultException.php -------------------------------------------------------------------------------- /lib/Exception/NoStringException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoStringException.php -------------------------------------------------------------------------------- /lib/Exception/NoStringLengthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoStringLengthException.php -------------------------------------------------------------------------------- /lib/Exception/NoStringWrapperException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoStringWrapperException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchAlertException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchAlertException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchCollectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchCollectionException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchCookieException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchCookieException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchDocumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchDocumentException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchDriverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchDriverException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchElementException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchElementException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchFrameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchFrameException.php -------------------------------------------------------------------------------- /lib/Exception/NoSuchWindowException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NoSuchWindowException.php -------------------------------------------------------------------------------- /lib/Exception/NullPointerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/NullPointerException.php -------------------------------------------------------------------------------- /lib/Exception/ScriptTimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/ScriptTimeoutException.php -------------------------------------------------------------------------------- /lib/Exception/SessionNotCreatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/SessionNotCreatedException.php -------------------------------------------------------------------------------- /lib/Exception/StaleElementReferenceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/StaleElementReferenceException.php -------------------------------------------------------------------------------- /lib/Exception/TimeoutException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/TimeoutException.php -------------------------------------------------------------------------------- /lib/Exception/UnableToCaptureScreenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnableToCaptureScreenException.php -------------------------------------------------------------------------------- /lib/Exception/UnableToSetCookieException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnableToSetCookieException.php -------------------------------------------------------------------------------- /lib/Exception/UnexpectedAlertOpenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnexpectedAlertOpenException.php -------------------------------------------------------------------------------- /lib/Exception/UnexpectedJavascriptException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnexpectedJavascriptException.php -------------------------------------------------------------------------------- /lib/Exception/UnexpectedTagNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnexpectedTagNameException.php -------------------------------------------------------------------------------- /lib/Exception/UnknownCommandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnknownCommandException.php -------------------------------------------------------------------------------- /lib/Exception/UnknownErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnknownErrorException.php -------------------------------------------------------------------------------- /lib/Exception/UnknownMethodException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnknownMethodException.php -------------------------------------------------------------------------------- /lib/Exception/UnknownServerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnknownServerException.php -------------------------------------------------------------------------------- /lib/Exception/UnrecognizedExceptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnrecognizedExceptionException.php -------------------------------------------------------------------------------- /lib/Exception/UnsupportedOperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/UnsupportedOperationException.php -------------------------------------------------------------------------------- /lib/Exception/WebDriverCurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/WebDriverCurlException.php -------------------------------------------------------------------------------- /lib/Exception/WebDriverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/WebDriverException.php -------------------------------------------------------------------------------- /lib/Exception/XPathLookupException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Exception/XPathLookupException.php -------------------------------------------------------------------------------- /lib/Firefox/FirefoxDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Firefox/FirefoxDriver.php -------------------------------------------------------------------------------- /lib/Firefox/FirefoxPreferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Firefox/FirefoxPreferences.php -------------------------------------------------------------------------------- /lib/Firefox/FirefoxProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Firefox/FirefoxProfile.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverButtonReleaseAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverButtonReleaseAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverClickAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverClickAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverClickAndHoldAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverClickAndHoldAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverContextClickAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverContextClickAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverCoordinates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverCoordinates.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverDoubleClickAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverDoubleClickAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverKeyDownAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverKeyDownAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverKeyUpAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverKeyUpAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverKeysRelatedAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverKeysRelatedAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverMouseAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverMouseAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverMouseMoveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverMouseMoveAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverMoveToOffsetAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverSendKeysAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverSendKeysAction.php -------------------------------------------------------------------------------- /lib/Interactions/Internal/WebDriverSingleKeyAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Internal/WebDriverSingleKeyAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverDoubleTapAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverDoubleTapAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverDownAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverDownAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverFlickAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverFlickAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverFlickFromElementAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverFlickFromElementAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverLongPressAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverLongPressAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverMoveAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverMoveAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverScrollAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverScrollAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverScrollFromElementAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverScrollFromElementAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverTapAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverTapAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverTouchAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverTouchAction.php -------------------------------------------------------------------------------- /lib/Interactions/Touch/WebDriverTouchScreen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/Touch/WebDriverTouchScreen.php -------------------------------------------------------------------------------- /lib/Interactions/WebDriverActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/WebDriverActions.php -------------------------------------------------------------------------------- /lib/Interactions/WebDriverCompositeAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/WebDriverCompositeAction.php -------------------------------------------------------------------------------- /lib/Interactions/WebDriverTouchActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Interactions/WebDriverTouchActions.php -------------------------------------------------------------------------------- /lib/Internal/WebDriverLocatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Internal/WebDriverLocatable.php -------------------------------------------------------------------------------- /lib/JavaScriptExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/JavaScriptExecutor.php -------------------------------------------------------------------------------- /lib/Net/URLChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Net/URLChecker.php -------------------------------------------------------------------------------- /lib/Remote/DesiredCapabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/DesiredCapabilities.php -------------------------------------------------------------------------------- /lib/Remote/DriverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/DriverCommand.php -------------------------------------------------------------------------------- /lib/Remote/ExecuteMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/ExecuteMethod.php -------------------------------------------------------------------------------- /lib/Remote/FileDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/FileDetector.php -------------------------------------------------------------------------------- /lib/Remote/HttpCommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/HttpCommandExecutor.php -------------------------------------------------------------------------------- /lib/Remote/JsonWireCompat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/JsonWireCompat.php -------------------------------------------------------------------------------- /lib/Remote/LocalFileDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/LocalFileDetector.php -------------------------------------------------------------------------------- /lib/Remote/RemoteExecuteMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteExecuteMethod.php -------------------------------------------------------------------------------- /lib/Remote/RemoteKeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteKeyboard.php -------------------------------------------------------------------------------- /lib/Remote/RemoteMouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteMouse.php -------------------------------------------------------------------------------- /lib/Remote/RemoteStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteStatus.php -------------------------------------------------------------------------------- /lib/Remote/RemoteTargetLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteTargetLocator.php -------------------------------------------------------------------------------- /lib/Remote/RemoteTouchScreen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteTouchScreen.php -------------------------------------------------------------------------------- /lib/Remote/RemoteWebDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteWebDriver.php -------------------------------------------------------------------------------- /lib/Remote/RemoteWebElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/RemoteWebElement.php -------------------------------------------------------------------------------- /lib/Remote/Service/DriverCommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/Service/DriverCommandExecutor.php -------------------------------------------------------------------------------- /lib/Remote/Service/DriverService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/Service/DriverService.php -------------------------------------------------------------------------------- /lib/Remote/UselessFileDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/UselessFileDetector.php -------------------------------------------------------------------------------- /lib/Remote/WebDriverBrowserType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/WebDriverBrowserType.php -------------------------------------------------------------------------------- /lib/Remote/WebDriverCapabilityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/WebDriverCapabilityType.php -------------------------------------------------------------------------------- /lib/Remote/WebDriverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/WebDriverCommand.php -------------------------------------------------------------------------------- /lib/Remote/WebDriverResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Remote/WebDriverResponse.php -------------------------------------------------------------------------------- /lib/Support/Events/EventFiringWebDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Support/Events/EventFiringWebDriver.php -------------------------------------------------------------------------------- /lib/Support/Events/EventFiringWebDriverNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Support/Events/EventFiringWebDriverNavigation.php -------------------------------------------------------------------------------- /lib/Support/Events/EventFiringWebElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Support/Events/EventFiringWebElement.php -------------------------------------------------------------------------------- /lib/Support/XPathEscaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/Support/XPathEscaper.php -------------------------------------------------------------------------------- /lib/WebDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriver.php -------------------------------------------------------------------------------- /lib/WebDriverAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverAction.php -------------------------------------------------------------------------------- /lib/WebDriverAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverAlert.php -------------------------------------------------------------------------------- /lib/WebDriverBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverBy.php -------------------------------------------------------------------------------- /lib/WebDriverCapabilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverCapabilities.php -------------------------------------------------------------------------------- /lib/WebDriverCheckboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverCheckboxes.php -------------------------------------------------------------------------------- /lib/WebDriverCommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverCommandExecutor.php -------------------------------------------------------------------------------- /lib/WebDriverDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverDimension.php -------------------------------------------------------------------------------- /lib/WebDriverDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverDispatcher.php -------------------------------------------------------------------------------- /lib/WebDriverElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverElement.php -------------------------------------------------------------------------------- /lib/WebDriverEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverEventListener.php -------------------------------------------------------------------------------- /lib/WebDriverExpectedCondition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverExpectedCondition.php -------------------------------------------------------------------------------- /lib/WebDriverHasInputDevices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverHasInputDevices.php -------------------------------------------------------------------------------- /lib/WebDriverKeyboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverKeyboard.php -------------------------------------------------------------------------------- /lib/WebDriverKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverKeys.php -------------------------------------------------------------------------------- /lib/WebDriverMouse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverMouse.php -------------------------------------------------------------------------------- /lib/WebDriverNavigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverNavigation.php -------------------------------------------------------------------------------- /lib/WebDriverNavigationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverNavigationInterface.php -------------------------------------------------------------------------------- /lib/WebDriverOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverOptions.php -------------------------------------------------------------------------------- /lib/WebDriverPlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverPlatform.php -------------------------------------------------------------------------------- /lib/WebDriverPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverPoint.php -------------------------------------------------------------------------------- /lib/WebDriverRadios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverRadios.php -------------------------------------------------------------------------------- /lib/WebDriverSearchContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverSearchContext.php -------------------------------------------------------------------------------- /lib/WebDriverSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverSelect.php -------------------------------------------------------------------------------- /lib/WebDriverSelectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverSelectInterface.php -------------------------------------------------------------------------------- /lib/WebDriverTargetLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverTargetLocator.php -------------------------------------------------------------------------------- /lib/WebDriverTimeouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverTimeouts.php -------------------------------------------------------------------------------- /lib/WebDriverUpAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverUpAction.php -------------------------------------------------------------------------------- /lib/WebDriverWait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverWait.php -------------------------------------------------------------------------------- /lib/WebDriverWindow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/lib/WebDriverWindow.php -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-webdriver/php-webdriver-archive/HEAD/phpstan.neon --------------------------------------------------------------------------------