Skip to content

Commit

Permalink
Merge pull request #4989 from okazy/fix/e2e-top-information
Browse files Browse the repository at this point in the history
管理画面のお知らせのE2Eテストをリダイレクトに対応
  • Loading branch information
chihiro-adachi authored Mar 31, 2021
2 parents d2bcb0d + 2cf0b53 commit 7c59b53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions codeception/acceptance/EA01TopCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ public function top_001(\AcceptanceTester $I)
// お知らせの記事をクリックすると設定されたURLに遷移することを確認
$I->switchToIFrame('information');
$selector = '.news_area .link_list .tableish a:nth-child(1)';
$url = $I->grabAttributeFrom($selector, 'href');
$url = $I->executeJS('return location.href');
$I->click(['css' => $selector]);
$I->switchToNewWindow();
$I->assertEquals($url, $I->executeJS('return location.href'), $url.' が一致しません');
$I->assertNotEquals($url, $I->executeJS('return location.href'), $url.' から遷移していません。');
$I->switchToWindow();

// ショップ情報の在庫切れ商品をクリックすると商品管理ページに遷移することを確認
Expand Down

0 comments on commit 7c59b53

Please sign in to comment.