1 | <?php |
||
32 | * Text Editor page. |
||
33 | */ |
||
34 | class TextEditorPage extends FilesPage { |
||
35 | protected $newTextFileButtonXpath |
||
36 | = './/div[contains(@class, "newFileMenu")]' . |
||
37 | '//a[@data-templatename="New text file.txt"]'; |
||
38 | protected $newTextFileNameInputLabel = 'New text file.txt'; |
||
39 | protected $newTextFileNameInputXpath |
||
40 | = './/div[contains(@class, "newFileMenu")]' . |
||
41 | '//a[@data-templatename="New text file.txt"]//input'; |
||
42 | protected $newTextFileTooltipXpath = ".//*[@class='tooltip-inner']"; |
||
43 | protected $textFileEditXpath = "//textarea[contains(@class,'ace_text-input')]"; |
||
44 | protected $textFileTextLayerXpath = "//div[contains(@class,'ace_text-layer')]"; |
||
45 | protected $textFileLineXpath = ".//div[@class='ace_line']"; |
||
46 | protected $textEditorCloseButtonId = "editor_close"; |
||
47 | |||
48 | /** |
||
49 | * type in the field that matches the given xpath and optionally press enter. |
||
50 | * Note: this depends on methods that might only be in the Selenium |
||
51 | * implementation |
||
52 | * |
||
53 | * @param Session $session |
||
54 | * @param string $xpath |
||
55 | * @param string $text |
||
56 | * @param bool $pressEnter |
||
57 | * |
||
58 | * @throws ElementNotFoundException |
||
59 | * @return void |
||
60 | */ |
||
61 | public function typeInField( |
||
62 | Session $session, |
||
63 | $xpath, |
||
64 | $text, |
||
65 | $pressEnter = false |
||
66 | ) { |
||
67 | $element = $session->getDriver()->getWebDriverSession()->element( |
||
68 | "xpath", $xpath |
||
69 | ); |
||
70 | |||
71 | if (is_null($element)) { |
||
72 | throw new ElementNotFoundException( |
||
73 | "could not find element with xpath '" . $xpath . "'" |
||
74 | ); |
||
75 | } |
||
76 | |||
77 | $keys = preg_split('//u', $text, null, PREG_SPLIT_NO_EMPTY); |
||
78 | if ($pressEnter) { |
||
79 | $keys[] = Key::ENTER; |
||
80 | } |
||
81 | $element->postValue(array('value' => $keys)); |
||
82 | } |
||
83 | |||
84 | /** |
||
85 | * create a text file with the given name. |
||
86 | * If name is not given the default is used. |
||
87 | * If $useDefaultFileExtension is true, then only the name is entered and the |
||
88 | * file extension is the default given by the application. |
||
89 | * |
||
90 | * @param Session $session |
||
91 | * @param string $name |
||
92 | * @param boolean $useDefaultFileExtension |
||
93 | * |
||
94 | * @return void |
||
95 | */ |
||
96 | public function createTextFile( |
||
97 | Session $session, |
||
98 | $name = null, |
||
99 | $useDefaultFileExtension = false |
||
100 | ) { |
||
101 | $newFileFolderButton |
||
102 | = $this->find("xpath", $this->newFileFolderButtonXpath); |
||
103 | |||
104 | if ($newFileFolderButton === null) { |
||
105 | throw new ElementNotFoundException( |
||
106 | "could not find new file/folder button" |
||
107 | ); |
||
108 | } |
||
109 | |||
110 | $newFileFolderButton->click(); |
||
111 | |||
112 | $newTextFileButton = $this->find("xpath", $this->newTextFileButtonXpath); |
||
113 | |||
114 | if ($newTextFileButton === null) { |
||
115 | throw new ElementNotFoundException( |
||
116 | "could not find new text file button" |
||
117 | ); |
||
118 | } |
||
119 | |||
120 | $newTextFileButton->click(); |
||
121 | |||
122 | if (strlen($name)) { |
||
123 | if ($useDefaultFileExtension) { |
||
124 | $this->typeInField( |
||
125 | $session, |
||
126 | $this->newTextFileNameInputXpath, |
||
127 | $name, |
||
128 | true |
||
129 | ); |
||
130 | } else { |
||
131 | try { |
||
132 | $this->fillField($this->newTextFileNameInputLabel, $name . "\n"); |
||
133 | } catch (NoSuchElement $e) { |
||
134 | // this seems to be a bug in MinkSelenium2Driver. |
||
135 | // used to work fine in 1.3.1 but now throws this exception |
||
136 | // actually all that we need does happen, |
||
137 | // so we just don't do anything |
||
138 | } catch (StaleElementReference $e) { |
||
139 | // At the end of processing setValue, MinkSelenium2Driver tries to blur |
||
140 | // away from the element. But we pressed enter which has already |
||
141 | // made the element go away. So we do not care about this exception. |
||
142 | // This issue started happening due to: |
||
143 | // https://github.com/minkphp/MinkSelenium2Driver/pull/286 |
||
144 | } |
||
145 | } |
||
146 | } |
||
147 | } else { |
||
|
|||
148 | $this->typeInField( |
||
149 | $session, |
||
150 | $this->newTextFileNameInputXpath, |
||
151 | '', |
||
152 | true |
||
153 | ); |
||
154 | } |
||
155 | |||
156 | $this->waitForAjaxCallsToStartAndFinish($session); |
||
157 | } |
||
158 | |||
159 | /** |
||
160 | * returns the tooltip that is displayed next to the new text file name box |
||
161 | * |
||
162 | * @return string |
||
163 | */ |
||
164 | public function getTooltipOfNewTextFileBox() { |
||
165 | $newTextFileTooltip = $this->find("xpath", $this->newTextFileTooltipXpath); |
||
166 | |||
167 | if ($newTextFileTooltip === null) { |
||
168 | throw new ElementNotFoundException( |
||
169 | "could not find new text file box tooltip" |
||
170 | ); |
||
171 | } |
||
172 | |||
173 | return $newTextFileTooltip->getText(); |
||
174 | } |
||
175 | |||
176 | /** |
||
177 | * type text into the text area |
||
178 | * |
||
179 | * @param Session $session |
||
180 | * @param string $text |
||
181 | * |
||
182 | * @return void |
||
183 | */ |
||
184 | public function typeIntoTextFile( |
||
185 | Session $session, |
||
186 | $text |
||
187 | ) { |
||
188 | $this->typeInField( |
||
189 | $session, |
||
190 | $this->textFileEditXpath, |
||
191 | $text |
||
192 | ); |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * get the content of the open text file |
||
197 | * |
||
198 | * @return array of lines of text |
||
199 | */ |
||
200 | public function textFileContent() { |
||
201 | $textLayer = $this->find("xpath", $this->textFileTextLayerXpath); |
||
202 | if ($textLayer === null) { |
||
203 | throw new ElementNotFoundException("could not find text layer"); |
||
204 | } |
||
205 | $textLineElements = $textLayer->findAll( |
||
206 | "xpath", $this->textFileLineXpath |
||
207 | ); |
||
208 | if ($textLineElements === null) { |
||
209 | throw new ElementNotFoundException("could not find text lines"); |
||
210 | } |
||
211 | $textLines = []; |
||
212 | foreach ($textLineElements as $textLineElement) { |
||
213 | $textLines[] = $textLineElement->getText(); |
||
214 | } |
||
215 | return $textLines; |
||
216 | } |
||
217 | |||
218 | /** |
||
219 | * |
||
220 | * @param Session $session |
||
221 | * |
||
222 | * @throws ElementNotFoundException |
||
223 | * @return void |
||
224 | */ |
||
225 | public function closeTheTextEditor(Session $session) { |
||
226 | $this->waitForAjaxCallsToStartAndFinish($session); |
||
227 | |||
228 | $closeButton = $this->findById($this->textEditorCloseButtonId); |
||
229 | if ($closeButton === null) { |
||
230 | throw new ElementNotFoundException( |
||
231 | "could not find text editor close button" |
||
232 | ); |
||
233 | } |
||
234 | $closeButton->click(); |
||
235 | } |
||
236 | |||
237 | /** |
||
238 | * @param int $timeout_msec |
||
239 | * |
||
240 | * @return void |
||
248 | } |