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.md
+5-2
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,16 @@ Compatibility with Symfony 4.3:
11
11
Setting HTML content via `HtmlPageCrawler::html($html)` is *not possible* any more,
12
12
use `HtmlPageCrawler::setInnerHtml($html)` instead
13
13
14
-
-`HtmlPageCrawler::getInnerHtml()` was removed because it is now just the same as `html()`.
15
-
16
14
-`HtmlPageCrawler::text()` is now just the parent `Crawler::text()` and acts as *getter* only
17
15
that returns the text content from the *first* node only. For setting text content, use `HtmlPageCrawler::setText($text)` instead.
18
16
17
+
-`HtmlPageCrawler::attr()` is now just the parent `Crawler::attr()` and acts as *getter* only.
18
+
For setting attributes use `HtmlPageCrawler::setAttribute($name, $value)` instead
19
+
19
20
- new method `HtmlPageCrawler::getCombinedText()` that returns the combined text from all nodes (as jQuery's `text()` function does and previous versions of `HtmlPageCrawler::text()` did)
0 commit comments