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