12 lines
167 B
PHP
12 lines
167 B
PHP
<?php
|
|
|
|
namespace Facebook\WebDriver;
|
|
|
|
/**
|
|
* Interface representing a single user-interaction action.
|
|
*/
|
|
interface WebDriverAction
|
|
{
|
|
public function perform();
|
|
}
|