Completed
Push — master ( 1671b1...4e9462 )
by Kamil
23:39
created

ShowPage   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 2
c 1
b 1
f 0
lcom 0
cbo 2
dl 0
loc 22
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A deleteProduct() 0 8 1
A getRouteName() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the Sylius package.
5
 *
6
 * (c) Paweł Jędrzejewski
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Sylius\Behat\Page\Admin\Product;
13
14
use Sylius\Behat\Page\SymfonyPage;
15
16
/**
17
 * @author Magdalena Banasiak <[email protected]>
18
 */
19
class ShowPage extends SymfonyPage implements ShowPageInterface
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function deleteProduct()
25
    {
26
        $this->getDocument()->pressButton('Delete');
27
28
        $confirmationModal = $this->getDocument()->find('css', '#confirmation-modal-confirm');
29
        $this->waitForModalToAppear($confirmationModal);
30
        $confirmationModal->find('css', 'a:contains("Delete")')->press();
31
    }
32
33
    /**
34
     * {@inheritdoc}
35
     */
36
    protected function getRouteName()
37
    {
38
        return 'sylius_backend_product_show';
39
    }
40
}
41