Skip to content

Commit c910c95

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent 59c391a commit c910c95

File tree

11 files changed

+62
-26
lines changed

11 files changed

+62
-26
lines changed

changelog.markdown

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,42 @@ title: Codeception Changelog
99

1010

1111

12+
### lib-web 2.1.0: 2.1.0
13+
14+
Released by [![](https://avatars.githubusercontent.com/in/15368?v=4&s=16){:height="16" width="16"} github-actions[bot]](https://github.com/apps/github-actions) on 2026/02/06 15:23:02 / [Repository](https://github.com/Codeception/lib-web) / [Releases](https://github.com/Codeception/lib-web/releases)
15+
16+
17+
18+
# [2.1.0](https://github.com/Codeception/lib-web/compare/2.0.1...2.1.0) (2026-02-06)
19+
20+
21+
### Features
22+
23+
* add support for phpunit 13 ([[#23](https://github.com/Codeception/lib-web/issues/23)](https://github.com/Codeception/lib-web/issues/23)) ([a030a3a](https://github.com/Codeception/lib-web/commit/a030a3a22fc8e856b5957086794ed5403c7992d9))
24+
25+
26+
27+
28+
29+
30+
### lib-asserts 3.2.0: 3.2.0
31+
32+
Released by [![](https://avatars.githubusercontent.com/in/15368?v=4&s=16){:height="16" width="16"} github-actions[bot]](https://github.com/apps/github-actions) on 2026/02/06 15:20:17 / [Repository](https://github.com/Codeception/lib-asserts) / [Releases](https://github.com/Codeception/lib-asserts/releases)
33+
34+
35+
36+
# [3.2.0](https://github.com/Codeception/lib-asserts/compare/3.1.0...3.2.0) (2026-02-06)
37+
38+
39+
### Features
40+
41+
* add support for phpunit 13 ([[#20](https://github.com/Codeception/lib-asserts/issues/20)](https://github.com/Codeception/lib-asserts/issues/20)) ([f161e5d](https://github.com/Codeception/lib-asserts/commit/f161e5d3a9e5ae573ca01cfb3b5601ff5303df03))
42+
43+
44+
45+
46+
47+
1248
### module-phpbrowser 4.0.0: 4.0.0
1349

1450
Released by [![](https://avatars.githubusercontent.com/in/15368?v=4&s=16){:height="16" width="16"} github-actions[bot]](https://github.com/apps/github-actions) on 2026/01/23 13:25:25 / [Repository](https://github.com/Codeception/module-phpbrowser) / [Releases](https://github.com/Codeception/module-phpbrowser/releases)

docs/modules/Laminas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,9 +1115,9 @@ $form = [
11151115
'checkbox1' => true,
11161116
// ...
11171117
];
1118-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1118+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
11191119
// $I->amOnPage('/path/to/form-page') may be needed
1120-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1120+
$I->seeInFormFields('//form[@id=my-form]', $form);
11211121

11221122
{% endhighlight %}
11231123

docs/modules/Laravel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1923,9 +1923,9 @@ $form = [
19231923
'checkbox1' => true,
19241924
// ...
19251925
];
1926-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1926+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
19271927
// $I->amOnPage('/path/to/form-page') may be needed
1928-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1928+
$I->seeInFormFields('//form[@id=my-form]', $form);
19291929

19301930
{% endhighlight %}
19311931

docs/modules/Lumen.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,9 +1374,9 @@ $form = [
13741374
'checkbox1' => true,
13751375
// ...
13761376
];
1377-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1377+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
13781378
// $I->amOnPage('/path/to/form-page') may be needed
1379-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1379+
$I->seeInFormFields('//form[@id=my-form]', $form);
13801380

13811381
{% endhighlight %}
13821382

docs/modules/Mezzio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,9 +1027,9 @@ $form = [
10271027
'checkbox1' => true,
10281028
// ...
10291029
];
1030-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1030+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
10311031
// $I->amOnPage('/path/to/form-page') may be needed
1032-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1032+
$I->seeInFormFields('//form[@id=my-form]', $form);
10331033

10341034
{% endhighlight %}
10351035

docs/modules/PhpBrowser.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,9 +1127,9 @@ $form = [
11271127
'checkbox1' => true,
11281128
// ...
11291129
];
1130-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1130+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
11311131
// $I->amOnPage('/path/to/form-page') may be needed
1132-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1132+
$I->seeInFormFields('//form[@id=my-form]', $form);
11331133

11341134
{% endhighlight %}
11351135

docs/modules/Symfony.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3016,9 +3016,9 @@ $form = [
30163016
'checkbox1' => true,
30173017
// ...
30183018
];
3019-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
3019+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
30203020
// $I->amOnPage('/path/to/form-page') may be needed
3021-
$I->seeInFormFields('//form[@id=my-form]', string $form);
3021+
$I->seeInFormFields('//form[@id=my-form]', $form);
30223022
30233023
{% endhighlight %}
30243024

docs/modules/WebDriver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1943,9 +1943,9 @@ $form = [
19431943
'checkbox1' => true,
19441944
// ...
19451945
];
1946-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1946+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
19471947
// $I->amOnPage('/path/to/form-page') may be needed
1948-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1948+
$I->seeInFormFields('//form[@id=my-form]', $form);
19491949

19501950
{% endhighlight %}
19511951

docs/modules/Yii2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1428,9 +1428,9 @@ $form = [
14281428
'checkbox1' => true,
14291429
// ...
14301430
];
1431-
$I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
1431+
$I->submitForm('//form[@id=my-form]', $form, 'submitButton');
14321432
// $I->amOnPage('/path/to/form-page') may be needed
1433-
$I->seeInFormFields('//form[@id=my-form]', string $form);
1433+
$I->seeInFormFields('//form[@id=my-form]', $form);
14341434

14351435
{% endhighlight %}
14361436

docs/reference/Locator.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ You can mix up CSS and XPath selectors here.
3131
{% highlight php %}
3232

3333
<?php
34-
use \Codeception\Util\Locator;
34+
use Codeception\Util\Locator;
3535
3636
$I->see('Title', Locator::combine('h1','h2','h3'));
3737

@@ -43,7 +43,7 @@ You can also combine CSS selector with XPath locator:
4343
{% highlight php %}
4444

4545
<?php
46-
use \Codeception\Util\Locator;
46+
use Codeception\Util\Locator;
4747
4848
$I->fillField(Locator::combine('form input[type=text]','//form/textarea[2]'), 'qwerty');
4949

@@ -121,7 +121,7 @@ Finds element by it's attribute(s)
121121
{% highlight php %}
122122

123123
<?php
124-
use \Codeception\Util\Locator;
124+
use Codeception\Util\Locator;
125125
126126
$I->seeElement(Locator::find('img', ['title' => 'diagram']));
127127

@@ -167,7 +167,7 @@ Matches the *a* element with given URL
167167
{% highlight php %}
168168
169169
<?php
170-
use \Codeception\Util\Locator;
170+
use Codeception\Util\Locator;
171171
172172
$I->see('Log In', Locator::href('/login.php'));
173173

@@ -342,7 +342,7 @@ You could try to match elements by their tab position using `tabIndex` method of
342342
{% highlight php %}
343343

344344
<?php
345-
use \Codeception\Util\Locator;
345+
use Codeception\Util\Locator;
346346
347347
$I->fillField(Locator::tabIndex(1), 'davert');
348348
$I->fillField(Locator::tabIndex(2) , 'qwerty');

0 commit comments

Comments
 (0)