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
Related problem: //a[@href='/browse/boardgame'] is translated to a[href=/browse/boardgame] (without quotes) which BeautifulSoup says is an invalid selector. Adding quotes a[href='/browse/boardgame'] makes BeautifulSoup happy.
a = "//a[contains(@href,'attestation-upload')]"
cssify(a)
output:
a[href*=attestation-upload]
expected condition:
in this case proper css selector, or the more accurate selector would be one with quoted value:
a[href*='attestation-upload']
I believe there should be an elegant way to make it happen
The text was updated successfully, but these errors were encountered: