browsertime 24.8.0 → 24.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Browsertime changelog (we do [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 24.8.1 - 2025-06-01
|
|
4
|
+
### Fixed
|
|
5
|
+
* [Visual Elements] Fix split for selector to include full value with ':'` - thank you [Pavel Bairov](https://github.com/Amerousful) for PR [#2298](https://github.com/sitespeedio/browsertime/pull/2298).
|
|
6
|
+
|
|
3
7
|
## 24.8.0 - 2025-05-30
|
|
4
8
|
### Added
|
|
5
9
|
* Updated to Chrome/Chromedriver 137 and Firefox 139 in the Docker container [#2284](https://github.com/sitespeedio/browsertime/pull/2284).
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
for (const nameAndSelector of customArray) {
|
|
92
92
|
const parts = nameAndSelector.split(':');
|
|
93
93
|
const type = parts[0];
|
|
94
|
-
const selector =
|
|
94
|
+
const selector = nameAndSelector.slice(nameAndSelector.indexOf(':') + 1);
|
|
95
95
|
const element = document.body.querySelector(selector);
|
|
96
96
|
try {
|
|
97
97
|
if (isElementPartlyInViewportAndVisible(element)) {
|
package/package.json
CHANGED