1 | <?php |
||
27 | class TextEditorFilesPage extends FilesPage |
||
28 | { |
||
29 | protected $newTextFileButtonXpath = './/div[contains(@class, "newFileMenu")]//a[@data-templatename="New text file.txt"]'; |
||
30 | protected $newTextFileNameInputLabel = 'New text file.txt'; |
||
31 | protected $textFileEditXpath = "//textarea[contains(@class,'ace_text-input')]"; |
||
32 | |||
33 | /** |
||
34 | * create a text file with the given name. |
||
35 | * If name is not given the default is used. |
||
36 | * |
||
37 | * @param string $name |
||
38 | */ |
||
39 | public function createTextFile($name = null) |
||
52 | |||
53 | /** |
||
54 | * finds the textarea field to use for editing a text file |
||
55 | * |
||
56 | * @throws ElementNotFoundException |
||
57 | * @return \Behat\Mink\Element\NodeElement |
||
58 | */ |
||
59 | public function findTextFileEditField() { |
||
68 | |||
69 | /** |
||
70 | * type text into the text area |
||
71 | * |
||
72 | * @param string $text |
||
73 | * @return void |
||
74 | */ |
||
75 | public function typeIntoTextFile($text) { |
||
79 | |||
80 | public function waitTillEditorIsLoaded($timeout_msec = STANDARDUIWAITTIMEOUTMILLISEC) |
||
84 | |||
85 | } |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.