You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.9 KiB
101 lines
2.9 KiB
<?php
|
|
/*
|
|
** Zabbix
|
|
** Copyright (C) 2001-2023 Zabbix SIA
|
|
**
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program; if not, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
**/
|
|
|
|
|
|
require_once 'vendor/autoload.php';
|
|
|
|
use Facebook\WebDriver\Remote\HttpCommandExecutor;
|
|
use Facebook\WebDriver\Remote\RemoteWebDriver;
|
|
use Facebook\WebDriver\Remote\WebDriverCommand;
|
|
use Facebook\WebDriver\Exception\Internal\WebDriverCurlException;
|
|
use Facebook\WebDriver\Exception\WebDriverException;
|
|
use Facebook\WebDriver\Exception\StaleElementReferenceException;
|
|
use Facebook\WebDriver\Exception\UnknownErrorException;
|
|
use Facebook\WebDriver\Exception\NoSuchElementException;
|
|
|
|
/**
|
|
* Helper class that allows custom command execution.
|
|
*/
|
|
class CommandExecutor extends HttpCommandExecutor {
|
|
|
|
/**
|
|
* Original executor object.
|
|
*
|
|
* @var WebDriverCommandExecutor
|
|
*/
|
|
protected $executor;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param WebDriverCommandExecutor $executor
|
|
*/
|
|
public function __construct($executor) {
|
|
$this->executor = $executor;
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function execute(WebDriverCommand $command) {
|
|
try {
|
|
return $this->executor->execute($command);
|
|
}
|
|
// Allow single communication timeout during test execution
|
|
catch (WebDriverCurlException $exception) {
|
|
// Code is not missing here
|
|
}
|
|
catch (UnknownErrorException|NoSuchElementException $exception) {
|
|
if (strpos($exception->getMessage(), 'ode with given id') !== false) {
|
|
throw new StaleElementReferenceException($exception->getMessage());
|
|
}
|
|
}
|
|
// Workaround for communication errors present on Jenkins
|
|
catch (WebDriverException $exception) {
|
|
if (strpos($exception->getMessage(), 'START_MAP') === false) {
|
|
throw $exception;
|
|
}
|
|
}
|
|
|
|
return $this->executor->execute($command);
|
|
}
|
|
|
|
/**
|
|
* Execute custom command for WebDriver.
|
|
*
|
|
* @param RemoteWebDriver $driver WebDriver instance
|
|
* @param array $params command parameters
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public static function executeCustom(RemoteWebDriver $driver, array $params = []) {
|
|
foreach (['commands', 'w3cCompliantCommands'] as $field) {
|
|
if (!isset(HttpCommandExecutor::$$field['custom'])) {
|
|
HttpCommandExecutor::$$field['custom'] = [
|
|
'method' => 'POST',
|
|
'url' => '/session/:sessionId/chromium/send_command_and_get_result'
|
|
];
|
|
}
|
|
}
|
|
|
|
return $driver->execute('custom', $params);
|
|
}
|
|
}
|