execute() public method

public execute ( $trace = false )
Esempio n. 1
0
 /**
  * Gets a list of available windows in current session
  * @return Array
  */
 public function getWindowHandles()
 {
     $command = new Commands\Command($this, 'window_handles');
     $results = $command->execute();
     return $results['value'];
 }