@lvce-editor/renderer-process 12.6.0 → 12.7.0
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.
|
@@ -5474,7 +5474,7 @@ const querySelector = selector => {
|
|
|
5474
5474
|
if (selector.startsWith('#')) {
|
|
5475
5475
|
return querySelectorByCss(selector);
|
|
5476
5476
|
}
|
|
5477
|
-
if (selector.startsWith('[data') || selector.startsWith('[title') || selector.startsWith('[name')) {
|
|
5477
|
+
if (selector.startsWith('[data') || selector.startsWith('[title') || selector.startsWith('[name') || selector.startsWith('[aria-label')) {
|
|
5478
5478
|
return querySelectorByCss(selector);
|
|
5479
5479
|
}
|
|
5480
5480
|
if (isElement(selector)) {
|