1: <?php
2:
3: class SimpleViewWithArgs extends Azalea\Selenium\Core\View
4: {
5: protected static $hash = "/patients/p/{patient}";
6: protected static $selector = "#patient{patient}";
7:
8: public function getViewSelector($args = array())
9: {
10: return $this->getSelector($args);
11: }
12: }
13:
14: ?>