You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
353B

  1. <?php
  2. use tests\codeception\frontend\FunctionalTester;
  3. /* @var $scenario Codeception\Scenario */
  4. $I = new FunctionalTester($scenario);
  5. $I->wantTo("m'assurer que les pages Mentions et CGV s'affichent");
  6. $I->amOnPage('/site/mentions');
  7. $I->see('Mentions légales', 'h1');
  8. $I->amOnPage('/site/cgv');
  9. $I->see('Conditions générales de service', 'h1');