codeception/_support/Page/Front/ProductDetailPage.php 1 location
|
@@ 75-81 (lines=7) @@
|
| 72 |
|
* @param $num|int |
| 73 |
|
* @return ProductDetailPage |
| 74 |
|
*/ |
| 75 |
|
public function カートに入れる($num) |
| 76 |
|
{ |
| 77 |
|
$this->tester->fillField(['id' => 'quantity'], $num); |
| 78 |
|
$this->tester->click(['id' => 'add-cart']); |
| 79 |
|
$this->tester->wait(1); |
| 80 |
|
return $this; |
| 81 |
|
} |
| 82 |
|
|
| 83 |
|
public function お気に入りに追加() |
| 84 |
|
{ |
codeception/_support/Page/Admin/ShippingManagePage.php 1 location
|
@@ 59-66 (lines=8) @@
|
| 56 |
|
return $this; |
| 57 |
|
} |
| 58 |
|
|
| 59 |
|
public function 詳細検索_電話番号($value = '') |
| 60 |
|
{ |
| 61 |
|
$this->tester->click(self::$詳細検索ボタン); |
| 62 |
|
$this->tester->wait(1); |
| 63 |
|
$this->tester->fillField(['id' => 'admin_search_shipping_phone_number'], $value); |
| 64 |
|
$this->tester->click('#search_form > div.c-outsideBlock__contents.mb-3 > button'); |
| 65 |
|
return $this; |
| 66 |
|
} |
| 67 |
|
|
| 68 |
|
public function 出荷CSVダウンロード実行() |
| 69 |
|
{ |