for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magium\Assertions\Xpath;
use Magium\Assertions\SelectorAssertionInterface;
use Magium\WebDriver\WebDriver;
class NotExists extends \Magium\Assertions\Element\NotExists implements SelectorAssertionInterface
{
public function assertSelector($selector)
$this->setSelector($selector);
$this->setBy(WebDriver::BY_XPATH);
$this->assert();
}