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
Describe the bug
The element selector generates an invalid CSS selector xlink:href which causes errors when paste the selector into Click Element block
To Reproduce
Steps to reproduce the behavior:
Run document.querySelectorAll("[xlink:href='anything']")
Error shows Uncaught SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '[xlink:href='anything']' is not a valid selector.
Expected behavior
Element selector should return valid selector to avoid syntax error, like replace xlink to *| -> [*|href='anything']
Screenshots
I am trying to click copy button below, element selector allows me to copy use[xlink:href='#tongyi-copy-line'] which cause my workflow to hit error, and after some searching I need to use [*|href='#tongyi-copy-line'] instead, which I found out from https://stackoverflow.com/a/39953667
Describe the bug
The element selector generates an invalid CSS selector
xlink:href
which causes errors when paste the selector into Click Element blockTo Reproduce
Steps to reproduce the behavior:
document.querySelectorAll("[xlink:href='anything']")
Uncaught SyntaxError: Failed to execute 'querySelectorAll' on 'Document': '[xlink:href='anything']' is not a valid selector.
Expected behavior
Element selector should return valid selector to avoid syntax error, like replace
xlink
to*|
->[*|href='anything']
Screenshots

I am trying to click copy button below, element selector allows me to copy
use[xlink:href='#tongyi-copy-line']
which cause my workflow to hit error, and after some searching I need to use[*|href='#tongyi-copy-line']
instead, which I found out from https://stackoverflow.com/a/39953667Copy button at https://tongyi.aliyun.com/
Desktop (please complete the following information):
Additional context
Thank you
The text was updated successfully, but these errors were encountered: