Skip to content

Commit c2c3e76

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent 8503de6 commit c2c3e76

File tree

10 files changed

+171
-151
lines changed

10 files changed

+171
-151
lines changed

changelog.markdown

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

1010

1111

12+
### lib-xml 1.0.3: 1.0.3
13+
14+
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16) Naktibalda](https://github.com/Naktibalda) on 2024/02/06 21:06:24 / [Repository](https://github.com/Codeception/lib-xml) / [Releases](https://github.com/Codeception/lib-xml/releases)
15+
16+
17+
18+
* Removed dependency on PHPUnit
19+
20+
21+
### lib-web 1.0.6: 1.0.6
22+
23+
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16) Naktibalda](https://github.com/Naktibalda) on 2024/02/06 20:50:54 / [Repository](https://github.com/Codeception/lib-web) / [Releases](https://github.com/Codeception/lib-web/releases)
24+
25+
26+
27+
* Support PHPUnit 11 by **[Naktibalda](https://github.com/Naktibalda)** in https://github.com/Codeception/lib-web/pull/11
28+
* Adding details to `grabAttributeFrom()` by **[ThomasLandauer](https://github.com/ThomasLandauer)** in https://github.com/Codeception/lib-web/pull/10
29+
30+
31+
1232
### Codeception 5.1.0: 5.1.0
1333

1434
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16) Naktibalda](https://github.com/Naktibalda) on 2024/02/04 13:52:44 / [Repository](https://github.com/Codeception/Codeception) / [Releases](https://github.com/Codeception/Codeception/releases)

docs/modules/Laminas.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -663,9 +663,9 @@ $I->followRedirect();
663663
* `param string` $attribute
664664
* `return mixed`
665665

666-
Grabs the value of the given attribute value from the given element.
666+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
667667

668-
Fails if element is not found.
668+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
669669

670670
{% highlight php %}
671671

docs/modules/Laravel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1065,9 +1065,9 @@ $app = $I->getApplication();
10651065
* `param string` $attribute
10661066
* `return mixed`
10671067

1068-
Grabs the value of the given attribute value from the given element.
1068+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
10691069

1070-
Fails if element is not found.
1070+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
10711071

10721072
{% highlight php %}
10731073

docs/modules/Lumen.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -699,9 +699,9 @@ Provides access the Lumen application object.
699699
* `param string` $attribute
700700
* `return mixed`
701701

702-
Grabs the value of the given attribute value from the given element.
702+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
703703

704-
Fails if element is not found.
704+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
705705

706706
{% highlight php %}
707707

docs/modules/Mezzio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -609,9 +609,9 @@ $I->followRedirect();
609609
* `param string` $attribute
610610
* `return mixed`
611611

612-
Grabs the value of the given attribute value from the given element.
612+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
613613

614-
Fails if element is not found.
614+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
615615

616616
{% highlight php %}
617617

docs/modules/PhpBrowser.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,9 +713,9 @@ $I->followRedirect();
713713
* `param string` $attribute
714714
* `return mixed`
715715

716-
Grabs the value of the given attribute value from the given element.
716+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
717717

718-
Fails if element is not found.
718+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
719719

720720
{% highlight php %}
721721

docs/modules/Symfony.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1077,9 +1077,9 @@ See the Symfony documentation on ['Logging Out'](https://symfony.com/doc/current
10771077
* `param string` $attribute
10781078
* `return mixed`
10791079

1080-
Grabs the value of the given attribute value from the given element.
1080+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
10811081

1082-
Fails if element is not found.
1082+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
10831083

10841084
{% highlight php %}
10851085

docs/modules/WebDriver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1275,9 +1275,9 @@ $I->fillField(['name' => 'email'], 'jon@example.com');
12751275
* `param ` $attribute
12761276
* `return ?string`
12771277

1278-
Grabs the value of the given attribute value from the given element.
1278+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
12791279

1280-
Fails if element is not found.
1280+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
12811281

12821282
{% highlight php %}
12831283

docs/modules/Yii2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -817,9 +817,9 @@ Returns a list of regex patterns for recognized domain names
817817
* `param string` $attribute
818818
* `return mixed`
819819

820-
Grabs the value of the given attribute value from the given element.
820+
Returns the value of the given attribute value from the given HTML element. For some attributes, the string `true` is returned instead of their literal value (e.g. `disabled="disabled"` or `required="required"`).
821821

822-
Fails if element is not found.
822+
Fails if the element is not found. Returns `null` if the attribute is not present on the element.
823823

824824
{% highlight php %}
825825

0 commit comments

Comments
 (0)