for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magefix\Behat\Page\Element;
/**
* Class XPathIdSelectorElement
*
* @package Magefix\Behat\Page\Element
* @author Carlo Tasca <[email protected]>
*/
class XPathIdSelectorElement extends Generic
{
* @var array
protected $selector = ['xpath' => '//*[@id="{parameter}"]'];
* setParameter wrapper
* @param $id
public function setId($id)
$this->setParameter($id);
}