一尘不染

如何处理“ org.openqa.selenium.WebDriverException:ChromeDriver仅支持BMP中的字符”异常?

selenium

每当我尝试使用selenium将某些非BMP字符(例如“🏀”)填充为文本区域的输入时,由于以下异常,我的chrome驱动程序将失败:

org.openqa.selenium.WebDriverException:未知错误:ChromeDriver仅支持BMP中的字符

下面的线程说它已经在谷歌浏览器中修复,但是我不这么认为:https
:
//code.google.com/p/chromedriver/issues/detail?id=187

我正在使用Chrome驱动程序(版本2.15.322448)和Chrome浏览器(版本43.0.2357.65)

任何建议,将不胜感激。


阅读 233

收藏
2020-06-26

共1个答案

一尘不染

链接https://code.google.com/p/chromedriver/issues/detail?id=187提到firefox浏览器也支持非BMP字符。

我尝试使用firefox驱动程序和Firefox浏览器(版本31),但它确实起作用。
现在,这是解决方法,而不是使用chrome驱动程序来使用firefox驱动程序。

2020-06-26