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

14 lines
257 B
PHP

<?php
namespace Facebook\WebDriver\Remote;
interface ExecuteMethod
{
/**
* @param string $command_name
* @param array $parameters
* @return WebDriverResponse
*/
public function execute($command_name, array $parameters = []);
}