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