11 lines
198 B
PHP
11 lines
198 B
PHP
<?php
|
|
|
|
namespace Facebook\WebDriver\Exception;
|
|
|
|
/**
|
|
* An element could not be located on the page using the given search parameters.
|
|
*/
|
|
class NoSuchElementException extends WebDriverException
|
|
{
|
|
}
|