for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the Spryker Commerce OS.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
declare(strict_types = 1);
namespace PyzTest\Yves\Application\Presentation\Controller;
use PyzTest\Yves\Application\ApplicationPresentationTester;
use PyzTest\Yves\Application\PageObject\Homepage;
* Auto-generated group annotations
*
* @group PyzTest
* @group Yves
* @group Application
* @group Presentation
* @group Controller
* @group HomepageCest
* Add your own group annotations below this line
class HomepageCest
{
public function _before(ApplicationPresentationTester $i): void
$i->amYves();
}
public function testICanOpenHomepage(ApplicationPresentationTester $i): void
$i->wantTo('See that i can open the homepage');
$i->amOnPage(Homepage::URL);
$i->canSeeElement('[data-qa="page"]');