tests/Behat/Page/Admin/CustomBlock/CreatePage.php 1 location
|
@@ 52-60 (lines=9) @@
|
| 49 |
|
/** |
| 50 |
|
* {@inheritdoc} |
| 51 |
|
*/ |
| 52 |
|
protected function getDefinedElements() |
| 53 |
|
{ |
| 54 |
|
return array_merge(parent::getDefinedElements(), [ |
| 55 |
|
'body' => '#lakion_sylius_cms_custom_block_body', |
| 56 |
|
'link' => '#lakion_sylius_cms_custom_block_linkUrl', |
| 57 |
|
'name' => '#lakion_sylius_cms_custom_block_name', |
| 58 |
|
'title' => '#lakion_sylius_cms_custom_block_title', |
| 59 |
|
]); |
| 60 |
|
} |
| 61 |
|
} |
| 62 |
|
|
tests/Behat/Page/Admin/ProductBlock/CreatePage.php 1 location
|
@@ 60-69 (lines=10) @@
|
| 57 |
|
/** |
| 58 |
|
* {@inheritdoc} |
| 59 |
|
*/ |
| 60 |
|
protected function getDefinedElements() |
| 61 |
|
{ |
| 62 |
|
return array_merge(parent::getDefinedElements(), [ |
| 63 |
|
'body' => '#lakion_sylius_cms_product_block_body', |
| 64 |
|
'link' => '#lakion_sylius_cms_product_block_linkUrl', |
| 65 |
|
'name' => '#lakion_sylius_cms_product_block_name', |
| 66 |
|
'product' => '#lakion_sylius_cms_product_block_product', |
| 67 |
|
'title' => '#lakion_sylius_cms_product_block_title', |
| 68 |
|
]); |
| 69 |
|
} |
| 70 |
|
} |
| 71 |
|
|
tests/Behat/Page/Admin/ProductBlock/UpdatePage.php 1 location
|
@@ 76-84 (lines=9) @@
|
| 73 |
|
/** |
| 74 |
|
* {@inheritdoc} |
| 75 |
|
*/ |
| 76 |
|
protected function getDefinedElements() |
| 77 |
|
{ |
| 78 |
|
return array_merge(parent::getDefinedElements(), [ |
| 79 |
|
'body' => '#lakion_sylius_cms_product_block_body', |
| 80 |
|
'link' => '#lakion_sylius_cms_product_block_linkUrl', |
| 81 |
|
'product' => '#lakion_sylius_cms_product_block_product', |
| 82 |
|
'title' => '#lakion_sylius_cms_product_block_title', |
| 83 |
|
]); |
| 84 |
|
} |
| 85 |
|
} |
| 86 |
|
|