for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magium\Assertions\Element;
use Magium\Assertions\AbstractAssertion;
abstract class AbstractSelectorAssertion extends AbstractAssertion
{
protected $selector;
protected $by;
/**
* @param $selector
* @return $this
*/
public function setSelector($selector)
$this->selector = $selector;
return $this;
}
* @param $by
public function setBy($by)
$this->by = $by;
* @return mixed
public function getBy()
return $this->by;
public function getSelector()
return $this->selector;