ContactCest.php 349 B

1234567891011121314151617181920
  1. <?php
  2. namespace frontend\tests\functional;
  3. use frontend\tests\FunctionalTester;
  4. /* @var $scenario \Codeception\Scenario */
  5. class ContactCest
  6. {
  7. public function _before(FunctionalTester $I)
  8. {
  9. $I->amOnPage(['site/contact']);
  10. }
  11. public function checkContact(FunctionalTester $I)
  12. {
  13. $I->see('联系我们');
  14. }
  15. }