‪TYPO3CMS  11.5
FileTree.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /*
6  * This file is part of the TYPO3 CMS project.
7  *
8  * It is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU General Public License, either version 2
10  * of the License, or any later version.
11  *
12  * For the full copyright and license information, please read the
13  * LICENSE.txt file that was distributed with this source code.
14  *
15  * The TYPO3 project - inspiring people to share!
16  */
17 
19 
21 use TYPO3\TestingFramework\Core\Acceptance\Helper\AbstractPageTree;
22 
23 class ‪FileTree extends AbstractPageTree
24 {
25  // Selectors
26  public static ‪$pageTreeFrameSelector = '#typo3-filestoragetree';
27  public static ‪$pageTreeSelector = '#navigation-tree-container';
28  public static ‪$treeItemSelector = 'g.nodes > .node';
29  public static ‪$treeItemAnchorSelector = 'text.node-name';
30 
37  {
38  $this->tester = $I;
39  }
40 }
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper\FileTree\$treeItemSelector
‪static $treeItemSelector
Definition: FileTree.php:28
‪TYPO3\CMS\Core\Tests\Acceptance\Support\ApplicationTester
Definition: ApplicationTester.php:27
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper\FileTree\$pageTreeFrameSelector
‪static $pageTreeFrameSelector
Definition: FileTree.php:26
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper\FileTree\$pageTreeSelector
‪static $pageTreeSelector
Definition: FileTree.php:27
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper\FileTree
Definition: FileTree.php:24
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper\FileTree\$treeItemAnchorSelector
‪static $treeItemAnchorSelector
Definition: FileTree.php:29
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper
Definition: Config.php:18
‪TYPO3\CMS\Core\Tests\Acceptance\Support\Helper\FileTree\__construct
‪__construct(ApplicationTester $I)
Definition: FileTree.php:36