Selenium webdriver无法在xpath上阅读中文

时间:2016-06-03 08:36:19

标签: java selenium encoding

我正面临着一个关于xpath尝试获取中文字符值并返回值的问题是中文值的外来值。好心提醒 。 实际上我已经将编码更改为UTF-8,因此它仍然无效。我尝试在字符串Str上设置一个日志,因为str的值是“???”。

代码:

String str = new String("三连号".getBytes(), "UTF-8");

WebDriverWait wait = new WebDriverWait(driver, 60);
                element = wait
                        .until(ExpectedConditions.presenceOfElementLocated(By.xpath("//span[@class='content' and contains(text(),'"+str+"')]")));

0 个答案:

没有答案