| @@ 259-277 (lines=19) @@ | ||
| 256 |         $I->see('0 件', 'div.ec-layoutRole div.ec-layoutRole__contents p.ec-para-nomal strong'); | |
| 257 | } | |
| 258 | ||
| 259 | public function mypage_退会手続き未実施(\AcceptanceTester $I) | |
| 260 |     { | |
| 261 |         $I->wantTo('EF0507-UC03-T01 Mypage 退会手続き 未実施'); | |
| 262 |         $createCustomer = Fixtures::get('createCustomer'); | |
| 263 | $customer = $createCustomer(); | |
| 264 | $I->loginAsMember($customer->getEmail(), 'password'); | |
| 265 | ||
| 266 | // TOPページ>マイページ>退会手続き | |
| 267 | MyPage::go($I) | |
| 268 | ->退会手続き(); | |
| 269 | ||
| 270 | // 会員退会手続きへ | |
| 271 |         $I->click('div.ec-withdrawRole form button'); | |
| 272 | ||
| 273 | // 未実施 | |
| 274 |         $I->click('div.ec-withdrawConfirmRole form a.ec-withdrawConfirmRole__cancel'); | |
| 275 | ||
| 276 | MyPage::at($I); | |
| 277 | } | |
| 278 | ||
| 279 | public function mypage_退会手続き(\AcceptanceTester $I) | |
| 280 |     { | |
| @@ 51-66 (lines=16) @@ | ||
| 48 |         $I->see('新着情報', '.ec-news__title'); | |
| 49 | } | |
| 50 | ||
| 51 | public function order_カート削除(\AcceptanceTester $I) | |
| 52 |     { | |
| 53 |         $I->wantTo('EF0301-UC01-T02 カート 削除'); | |
| 54 |         $createCustomer = Fixtures::get('createCustomer'); | |
| 55 | $customer = $createCustomer(); | |
| 56 | $I->loginAsMember($customer->getEmail(), 'password'); | |
| 57 | ||
| 58 | $productPage = ProductDetailPage::go($I, 2) | |
| 59 | ->カートに入れる(1); | |
| 60 | $I->wait(5); | |
| 61 | ||
| 62 | $productPage->カートへ進む(); | |
| 63 | ||
| 64 | CartPage::go($I) | |
| 65 | ->商品削除(1); | |
| 66 | } | |
| 67 | ||
| 68 | public function order_カート数量増やす(\AcceptanceTester $I) | |
| 69 |     { | |