Test filesverification/TestModule/Test/CharacterReplacementTest.xml
") */ class CharacterReplacementTestCest { /** * @var bool */ private $isSuccess = false; /** * @param AcceptanceTester $I * @throws \Exception */ public function _after(AcceptanceTester $I) { if ($this->isSuccess) { unlink(__FILE__); } } /** * @Features({"TestModule"}) * @param AcceptanceTester $I * @return void * @throws \Exception */ public function CharacterReplacementTest(AcceptanceTester $I) { $I->click("#element"); // stepKey: charsInSectionElement $I->fillField("#element", "7700 West Parmer Lane"); // stepKey: charsInDataRef $I->click("#element .abcdefghijklmnopqrstuvwxyz1234567890"); // stepKey: allChars1 $I->click("#element .`~!@#$%^&*()-_=+{}[]|\;:\".,>click("#element .words, and, commas, and, spaces"); // stepKey: allChars3 $I->click("#abcdefghijklmnopqrstuvwxyz1234567890 .abcdefghijklmnopqrstuvwxyz1234567890"); // stepKey: allChars4 $I->click("#`~!@#$%^&*()-_=+{}[]|\;:\".,>click("#words, and, commas, and, spaces .words, and, commas, and, spaces"); // stepKey: allChars6 } public function _passed(AcceptanceTester $I) { // Test passed successfully. $this->isSuccess = true; } }