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
The cause is that selectHyperlinks append a selector automatically if the query does not contains one.
fun Node.selectHyperlinks(query: String, offset: Int = 1, limit: Int = Int.MAX_VALUE): List<Hyperlink> {
val cssQuery = appendSelectorIfMissing(query, "a")
...
The following queries are failed:
document.selectHyperlinks('[href=/dp/]')
ele.selectHyperlinks('[href=/dp/]')
the following queiries are supported by chrome devtools, bug not sure they are standard or not, they are also failed:
document.selectHyperlinks('[href*=/dp/]')
ele.selectHyperlinks('[href*=/dp/]')
The text was updated successfully, but these errors were encountered: