gpt4 book ai didi

python - 如何在 xpath 字符串中使用 unicode? (统一码编码错误)

转载 作者:太空狗 更新时间:2023-10-29 20:28:46 26 4
gpt4 key购买 nike

我通过 Python api 在 Selenium RC 中使用 xpath。

我需要点击一个文本为“提交 »”的元素

这是我遇到的错误:

In [18]: sel.click(u"xpath=//a[text()='Submit \xbb')]")
---------------------------------------------------------------------------
UnicodeDecodeError Traceback (most recent call last)

/Users/me/<ipython console> in <module>()

/Users/me/selenium.py in click(self, locator)
282 'locator' is an element locator
283 """
--> 284 self.do_command("click", [locator,])
285
286

/Users/me/selenium.py in do_command(self, verb, args)
201 body = u'cmd=' + urllib.quote_plus(unicode(verb).encode('utf-8'))
202 for i in range(len(args)):
--> 203 body += '&' + unicode(i+1) + '=' + urllib.quote_plus(unicode(args[i]).encode('utf-8'))
204 if (None != self.sessionId):
205 body += "&sessionId=" + unicode(self.sessionId)

UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 28: ordinal not in range(128)

最佳答案

sel.click(u"xpath=//a[text()='Submit \xbb')]")

可以编写包含任何 Unicode 字符的 XPath 表达式

例如:

//a[text()='提交 »')]

关于python - 如何在 xpath 字符串中使用 unicode? (统一码编码错误),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3029866/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com