You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.markdown
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,13 @@ title: Codeception Changelog
8
8
# Changelog
9
9
10
10
11
+
#### 4.1.15
12
+
13
+
* GroupManager: Show which group contains a missing file [#5938](https://github.com/Codeception/Codeception/issues/5938)
14
+
* Ignore . namespace in generators when someone pass path as a class name, e.g. ./foo [#5818](https://github.com/Codeception/Codeception/issues/5818)
15
+
* Removed "Running with seed" from CLI report ([#6088](https://github.com/Codeception/Codeception/issues/6088)) by **[eXorus](https://github.com/eXorus)**
16
+
* Suggest most similar module in missing module exception [#6079](https://github.com/Codeception/Codeception/issues/6079) by **[c33s](https://github.com/c33s)**
17
+
11
18
#### 4.1.14
12
19
13
20
* Improved compatibility logic for Symfony EventDispatcher
Use this method in debug mode within an interactive pause to get a source code of current page.
815
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Use this method in debug mode within an interactive pause to get a source code of current page.
1268
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Use this method in debug mode within an interactive pause to get a source code of current page.
1056
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Use this method in debug mode within an interactive pause to get a source code of current page.
749
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Use this method in debug mode within an interactive pause to get a source code of current page.
917
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Use this method in debug mode within an interactive pause to get a source code of current page.
909
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Use this method in debug mode within an interactive pause to get a source code of current page.
850
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Copy file name to clipboardExpand all lines: docs/modules/Symfony.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1019,8 +1019,7 @@ $I->logout();
1019
1019
1020
1020
#### makeHtmlSnapshot
1021
1021
1022
-
Saves current page's HTML into a temprary file.
1023
-
Use this method in debug mode within an interactive pause to get a source code of current page.
1022
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
Copy file name to clipboardExpand all lines: docs/modules/WebDriver.md
+23-4Lines changed: 23 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -197,7 +197,7 @@ you should use a tunnel application provided by a service.
197
197
198
198
### Configuration
199
199
200
-
*`url`*required* - Starting URL for your app.
200
+
*`url`*required* - Base URL for your app (amOnPage opens URLs relative to this setting).
201
201
*`browser`*required* - Browser to launch.
202
202
*`host` - Selenium server host (127.0.0.1 by default).
203
203
*`port` - Selenium server port (4444 by default).
@@ -212,6 +212,8 @@ you should use a tunnel application provided by a service.
212
212
*`pageload_timeout` - amount of time to wait for a page load to complete before throwing an error (default 0 seconds).
213
213
*`http_proxy` - sets http proxy server url for testing a remote server.
214
214
*`http_proxy_port` - sets http proxy server port
215
+
*`ssl_proxy` - sets ssl(https) proxy server url for testing a remote server.
216
+
*`ssl_proxy_port` - sets ssl(https) proxy server port
215
217
*`debug_log_entries` - how many selenium entries to print with `debugWebDriverLogs` or on fail (0 by default).
216
218
*`log_js_errors` - Set to true to include possible JavaScript to HTML report, or set to false (default) to deactivate.
217
219
@@ -324,7 +326,7 @@ Returns current WebDriver session for saving
324
326
*hidden API method, expected to be used from Helper classes*
325
327
326
328
Change capabilities of WebDriver. Should be executed before starting a new browser session.
327
-
This method expects a function to be passed which returns array or [WebDriver Desired Capabilities](https://github.com/php-webdriver/php-webdriver/blob/community/lib/Remote/DesiredCapabilities.php) object.
329
+
This method expects a function to be passed which returns array or [WebDriver Desired Capabilities](https://github.com/php-webdriver/php-webdriver/blob/main/lib/Remote/DesiredCapabilities.php) object.
328
330
Additional [Chrome options](https://github.com/php-webdriver/php-webdriver/wiki/ChromeOptions) (like adding extensions) can be passed as well.
329
331
330
332
{% highlight php %}
@@ -1298,10 +1300,27 @@ See [saveSessionSnapshot](#saveSessionSnapshot)
1298
1300
*`param` $name
1299
1301
1300
1302
1303
+
#### makeElementScreenshot
1304
+
1305
+
Takes a screenshot of an element of the current window and saves it to `tests/_output/debug`.
// saved to: tests/_output/debug/2017-05-26_14-24-11_4b3403665fea6.png
1315
+
1316
+
{% endhighlight %}
1317
+
1318
+
* `param` $name
1319
+
1320
+
1301
1321
#### makeHtmlSnapshot
1302
1322
1303
-
Saves current page's HTML into a temprary file.
1304
-
Use this method in debug mode within an interactive pause to get a source code of current page.
1323
+
Use this method within an [interactive pause](https://codeception.com/docs/02-GettingStarted#Interactive-Pause) to save the HTML source code of the current page.
0 commit comments