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
+65-9Lines changed: 65 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,71 @@ title: Codeception Changelog
9
9
10
10
11
11
12
+
### lib-innerbrowser 3.1.3: 3.1.3
13
+
14
+
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/10/03 15:36:06 / [Repository](https://github.com/Codeception/lib-innerbrowser) / [Releases](https://github.com/Codeception/lib-innerbrowser/releases)
15
+
16
+
17
+
18
+
## What's Changed
19
+
* fix: checkbox handling by **[SamMousa](https://github.com/SamMousa)** in https://github.com/Codeception/lib-innerbrowser/pull/60
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/09/30 15:48:28 / [Repository](https://github.com/Codeception/Codeception) / [Releases](https://github.com/Codeception/Codeception/releases)
28
+
29
+
30
+
31
+
* Fixed passing test result to dependent tests in unit tests ([#6580](https://github.com/Codeception/Codeception/issues/6580))
32
+
* Fixed `TypeError` when **[coversNothing](https://github.com/coversNothing)** annotation is used by Slamdunk ([#6582](https://github.com/Codeception/Codeception/issues/6582))
* Fixed phar file url in `self-update` command by **[voku](https://github.com/voku)** ([#6563](https://github.com/Codeception/Codeception/issues/6563))
35
+
* Added message how to exit Codeception console by **[ThomasLandauer](https://github.com/ThomasLandauer)** ([#6561](https://github.com/Codeception/Codeception/issues/6561))
36
+
* Improved compatibility with PHPUnit 10
37
+
38
+
39
+
### lib-asserts 2.0.1: 2.0.1
40
+
41
+
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/09/27 06:20:36 / [Repository](https://github.com/Codeception/lib-asserts) / [Releases](https://github.com/Codeception/lib-asserts/releases)
42
+
43
+
44
+
45
+
* Fix compatibility with PHPUnit 7 and 8.
46
+
47
+
48
+
### module-webdriver 1.4.1: 1.4.1
49
+
50
+
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/09/12 05:29:45 / [Repository](https://github.com/Codeception/module-webdriver) / [Releases](https://github.com/Codeception/module-webdriver/releases)
51
+
52
+
53
+
54
+
* Fixed negative tab offset crashes by **[webmaster777](https://github.com/webmaster777)** in https://github.com/Codeception/module-webdriver/pull/108
55
+
56
+
57
+
### module-webdriver 2.0.4: 2.0.4
58
+
59
+
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/09/12 05:28:56 / [Repository](https://github.com/Codeception/module-webdriver) / [Releases](https://github.com/Codeception/module-webdriver/releases)
60
+
61
+
62
+
63
+
* Fixed negative tab offset crashes by **[webmaster777](https://github.com/webmaster777)** in https://github.com/Codeception/module-webdriver/pull/108
64
+
65
+
66
+
### module-webdriver 3.1.3: 3.1.3
67
+
68
+
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/09/12 04:57:16 / [Repository](https://github.com/Codeception/module-webdriver) / [Releases](https://github.com/Codeception/module-webdriver/releases)
69
+
70
+
71
+
72
+
* Fixed negative tab offset crashes by **[webmaster777](https://github.com/webmaster777)** in https://github.com/Codeception/module-webdriver/pull/108
73
+
* Documentation updates by **[luke-](https://github.com/luke-)** and **[salmanlt](https://github.com/salmanlt)**
74
+
75
+
76
+
12
77
### lib-xml 1.0.1: 1.0.1
13
78
14
79
Released by [ Naktibalda](https://github.com/Naktibalda) on 2022/09/11 14:13:11 / [Repository](https://github.com/Codeception/lib-xml) / [Releases](https://github.com/Codeception/lib-xml/releases)
@@ -1997,15 +2062,6 @@ Released by [ Naktib
1997
2062
1998
2063
1999
2064
2000
-
### Codeception 4.1.20:
2001
-
2002
-
Released by [ Naktibalda](https://github.com/Naktibalda) on 2021/04/02 16:43:57 / [Repository](https://github.com/Codeception/Codeception) / [Releases](https://github.com/Codeception/Codeception/releases)
2003
-
2004
-
2005
-
2006
-
* Fix compatibility with PHP 7.0
2007
-
2008
-
2009
2065
### module-redis 1.1.0: Allow more parameters to be sent to Predis Client
2010
2066
2011
2067
Released by [ Naktibalda](https://github.com/Naktibalda) on 2021/03/31 16:04:36 / [Repository](https://github.com/Codeception/module-redis) / [Releases](https://github.com/Codeception/module-redis/releases)
Copy file name to clipboardExpand all lines: docs/APITesting.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -204,7 +204,7 @@ Codeception uses this simple and lightweight definitions format which can be [ea
204
204
205
205
Responses are returned from `send*` methods:
206
206
207
-
```php
207
+
```php<?php
208
208
209
209
$users = $I->sendGet('/users');
210
210
@@ -215,7 +215,7 @@ $users = $I->grabResponse();
215
215
216
216
When you need to obtain a value from a response and use it in next requests you can use `grab*` methods. For instance, use `grabDataFromResponseByJsonPath` allows to query JSON for a value.
Copy file name to clipboardExpand all lines: docs/modules/WebDriver.md
+14-16Lines changed: 14 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ Docker can ship Selenium Server with all its dependencies and browsers inside a
84
84
Running tests inside Docker is as easy as pulling [official selenium image](https://github.com/SeleniumHQ/docker-selenium) and starting a container with Chrome:
85
85
86
86
{% highlight yaml %}
87
-
docker run --net=host selenium/standalone-chrome
87
+
docker run --net=host --shm-size 2g selenium/standalone-chrome
88
88
89
89
{% endhighlight %}
90
90
@@ -198,28 +198,26 @@ you should use a tunnel application provided by a service.
198
198
199
199
#### LambdaTest
200
200
201
-
1. Create an account at [LambdaTest](https://www.lambdatest.com/) to get your username and access key
201
+
1. Create an account at [LambdaTest](https://www.lambdatest.com) to get your username and access key
202
202
2. In the module configuration use the format `username`:`access key`@hub.lambdatest.com' for `host`
203
-
3. Configure `os`and `os_version` under `capabilities` to define the operating System
204
-
4. If your site is available only locally or via VPN you should use a tunnel app. In this caseadd capabilities.setCapability("tunnel",true);.
203
+
3. Configure `platformName`, 'browserVersion', and 'browserName' under `LT:Options` to define test environments.
204
+
4. If your website is available only locally or via VPN you should use LambdaTest tunnel. In this case, you can add capability "tunnel":true;.
0 commit comments