从标签<font color =“red”>读取文本并通过控制台打印</font>

时间:2013-12-04 10:32:17

标签: java webdriver

我有一个HTML代码,其中包含标签下的文字                 font color =“red”短信/字体
  请建议读取/获取文本的代码并通过输出控制台打印

2 个答案:

答案 0 :(得分:0)

看看这个: http://xahlee.info/js/js_get_elements.html 对于输出,只需使用console.log()

答案 1 :(得分:0)

我会尝试使用getAttribute代替getText,smth。比如System.out.println(driver.findElement(By.xpath("write_here_your_locator")).getAttribute("color"));