Failed Conditions
Pull Request — experimental/sf (#3264)
by Kiyotaka
93:10 queued 80:54
created
codeception/_support/Page/Admin/ShippingCsvUploadPage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -33,6 +33,9 @@
 block discarded – undo
33 33
         parent::__construct($I);
34 34
     }
35 35
 
36
+    /**
37
+     * @param \AcceptanceTester $I
38
+     */
36 39
     public static function go($I)
37 40
     {
38 41
         $page = new ProductCsvUploadPage($I);
Please login to merge, or discard this patch.
codeception/_support/Page/Admin/ShippingManagePage.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -45,12 +45,18 @@  discard block
 block discarded – undo
45 45
         return $this;
46 46
     }
47 47
 
48
+    /**
49
+     * @param string $value
50
+     */
48 51
     public function 入力_ご注文者お名前($value)
49 52
     {
50 53
         $this->tester->fillField(['id' => 'admin_search_shipping_order_name'], $value);
51 54
         return $this;
52 55
     }
53 56
 
57
+    /**
58
+     * @param string $value
59
+     */
54 60
     public function 入力_ご注文者お名前フリガナ($value)
55 61
     {
56 62
         $this->tester->fillField(['id' => 'admin_search_shipping_order_kana'], $value);
@@ -78,6 +84,9 @@  discard block
 block discarded – undo
78 84
         return $this;
79 85
     }
80 86
 
87
+    /**
88
+     * @param integer $rowNum
89
+     */
81 90
     public function 一覧_編集($rowNum)
82 91
     {
83 92
         $this->tester->click(['xpath' => "//*[@id='form_bulk']/div[2]/div/table/tbody/tr[${rowNum}]/td[2]/a"]);
@@ -137,16 +146,25 @@  discard block
 block discarded – undo
137 146
         $this->tester->click('#form_bulk #btn_bulk_mail');
138 147
     }
139 148
 
149
+    /**
150
+     * @param integer $rowNum
151
+     */
140 152
     public function 一覧_チェックボックス($rowNum)
141 153
     {
142 154
         $this->tester->click(['xpath' => "//*[@id='form_bulk']/div[2]/div/table/tbody/tr[${rowNum}]/td[1]/input"]);
143 155
     }
144 156
 
157
+    /**
158
+     * @param integer $rowNum
159
+     */
145 160
     public function 取得_出荷伝票番号($rowNum)
146 161
     {
147 162
         return $this->tester->grabTextFrom("#form_bulk table > tbody > tr:nth-child(${rowNum}) > td:nth-child(3)");
148 163
     }
149 164
 
165
+    /**
166
+     * @param integer $rowNum
167
+     */
150 168
     public function 取得_出荷日($rowNum)
151 169
     {
152 170
         return $this->tester->grabTextFrom("#form_bulk table > tbody > tr:nth-child(${rowNum}) > td:nth-child(7)");
Please login to merge, or discard this patch.