获得DIV的价值 – WebDriver(Selenium)

前端之家收集整理的这篇文章主要介绍了获得DIV的价值 – WebDriver(Selenium)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用webdriver获取div的值而不是Selenium
例如 :
<div class="headerbande">BIENVENUE</div>

webdriver中有任何方法可以使用类名获取“BIENVENUE”吗?
提前致谢.

解决方法

使用java,你会写:
WebElement element = webdriver.findElement(By.className("headerbande"));

查看Introducing the Selenium-WebDriver API by Example获取其他语言的示例.

原文链接:https://www.f2er.com/css/214779.html

猜你在找的CSS相关文章