Completed
Push — 4.0 ( b48f64...137622 )
by chihiro
20:21 queued 10s
created

_support/Page/Admin/BlockManagePage.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * This file is part of EC-CUBE
5
 *
6
 * Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
7
 *
8
 * http://www.lockon.co.jp/
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Page\Admin;
15
16 View Code Duplication
class BlockManagePage extends AbstractAdminPageStyleGuide
0 ignored issues
show
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
17
{
18
    /**
19
     * BlockManagePage constructor.
20
     */
21
    public function __construct(\AcceptanceTester $I)
22
    {
23
        parent::__construct($I);
24
    }
25
26
    public static function go($I)
27
    {
28
        $page = new self($I);
29
30
        return $page->goPage('/content/block', 'ブロック管理コンテンツ管理');
31
    }
32
33
    public function 新規入力()
34
    {
35
        $this->tester->click('#page_admin_content_block > div.c-container > div.c-contentsArea > div.c-contentsArea__cols > div > div > div.row.justify-content-between.mb-2 > div.col-9 > a');
36
    }
37
38
    public function 編集($rowNum)
39
    {
40
        $this->tester->click("#page_admin_content_block > div > div.c-contentsArea > div.c-contentsArea__cols > div > div.c-primaryCol > div > div > div > ul > li:nth-child(${rowNum}) > div > div.col-auto.text-right > a:nth-child(1)");
41
    }
42
43
    public function 削除($rowNum)
44
    {
45
        $this->tester->click("#page_admin_content_block > div > div.c-contentsArea > div.c-contentsArea__cols > div > div.c-primaryCol > div > div > div > ul > li:nth-child(${rowNum}) > div > div.col-auto.text-right > a.btn.btn-ec-actionIcon.mr-3.disabled");
46
    }
47
}
48