clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\CurlExec class
*
* @package WebDriver
*/
final class CurlExec extends BaseException
{
/**
* @var array
*/
private $curlInfo = array();
/**
* Get curl info
*
* @return array
*/
public function getCurlInfo()
{
return $this->curlInfo;
}
/**
* Set curl info
*
* @param array $curlInfo
*/
public function setCurlInfo($curlInfo)
{
$this->curlInfo = $curlInfo;
}
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\DetachedShadowRoot class
*
* @package WebDriver
*/
final class DetachedShadowRoot extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\ElementClickIntercepted class
*
* @package WebDriver
*/
final class ElementClickIntercepted extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\ElementIsNotSelectable class
*
* @package WebDriver
*/
final class ElementIsNotSelectable extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\ElementNotInteractable class
*
* @package WebDriver
*/
final class ElementNotInteractable extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\ElementNotVisible class
*
* @package WebDriver
*/
final class ElementNotVisible extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\IMEEngineActivationFailed class
*
* @package WebDriver
*/
final class IMEEngineActivationFailed extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\IMENotAvailable class
*
* @package WebDriver
*/
final class IMENotAvailable extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InsecureCertificate class
*
* @package WebDriver
*/
final class InsecureCertificate extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidArgument class
*
* @package WebDriver
*/
final class InvalidArgument extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidCookieDomain class
*
* @package WebDriver
*/
final class InvalidCookieDomain extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2022 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidCoordinates class
*
* @package WebDriver
*/
final class InvalidCoordinates extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidElementCoordinates class
*
* @package WebDriver
*/
final class InvalidElementCoordinates extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidElementState class
*
* @package WebDriver
*/
final class InvalidElementState extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidRequest class
*
* @package WebDriver
*/
final class InvalidRequest extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidSelector class
*
* @package WebDriver
*/
final class InvalidSelector extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\InvalidSessionID class
*
* @package WebDriver
*/
final class InvalidSessionID extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\JavaScriptError class
*
* @package WebDriver
*/
final class JavaScriptError extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\JsonParameterExpected class
*
* @package WebDriver
*/
final class JsonParameterExpected extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\MoveTargetOutOfBounds class
*
* @package WebDriver
*/
final class MoveTargetOutOfBounds extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoAlertOpenError class
*
* @package WebDriver
*/
final class NoAlertOpenError extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoParametersExpected class
*
* @package WebDriver
*/
final class NoParametersExpected extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchAlert class
*
* @package WebDriver
*/
final class NoSuchAlert extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchCookie class
*
* @package WebDriver
*/
final class NoSuchCookie extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchDriver class
*
* @package WebDriver
*/
final class NoSuchDriver extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchElement class
*
* @package WebDriver
*/
final class NoSuchElement extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchFrame class
*
* @package WebDriver
*/
final class NoSuchFrame extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchShadowRoot class
*
* @package WebDriver
*/
final class NoSuchShadowRoot extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\NoSuchWindow class
*
* @package WebDriver
*/
final class NoSuchWindow extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\ObsoleteCommand class
*
* @package WebDriver
*/
final class ObsoleteCommand extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\ScriptTimeout class
*
* @package WebDriver
*/
final class ScriptTimeout extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\SessionNotCreated class
*
* @package WebDriver
*/
final class SessionNotCreated extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\StaleElementReference class
*
* @package WebDriver
*/
final class StaleElementReference extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\Timeout class
*
* @package WebDriver
*/
final class Timeout extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnableToCaptureScreen class
*
* @package WebDriver
*/
final class UnableToCaptureScreen extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnableToSetCookie class
*
* @package WebDriver
*/
final class UnableToSetCookie extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnexpectedAlertOpen class
*
* @package WebDriver
*/
final class UnexpectedAlertOpen extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnexpectedParameters class
*
* @package WebDriver
*/
final class UnexpectedParameters extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnknownCommand class
*
* @package WebDriver
*/
final class UnknownCommand extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnknownError class
*
* @package WebDriver
*/
final class UnknownError extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnknownLocatorStrategy class
*
* @package WebDriver
*/
final class UnknownLocatorStrategy extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnknownMethod class
*
* @package WebDriver
*/
final class UnknownMethod extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2019 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\UnsupportedOperation class
*
* @package WebDriver
*/
final class UnsupportedOperation extends BaseException
{
}

View File

@@ -0,0 +1,23 @@
<?php
/**
* @copyright 2013 Anthon Pang
* @license Apache-2.0
*
* @package WebDriver
*
* @author Anthon Pang <apang@softwaredevelopment.ca>
*/
namespace WebDriver\Exception;
use WebDriver\Exception as BaseException;
/**
* WebDriver\Exception\XPathLookupError class
*
* @package WebDriver
*/
final class XPathLookupError extends BaseException
{
}