I want to get the value of div using webdriver and not Selenium For example :
<div class="headerbande">BIENVENUE</div>
Is there any method in webdriver to get "BIENVENUE" using class name ? Thanks in advance.
|
I want to get the value of div using webdriver and not Selenium For example :
Is there any method in webdriver to get "BIENVENUE" using class name ? Thanks in advance. |
||||
|
|
|
With java you would write:
Take a look at Introducing the Selenium-WebDriver API by Example for examples in other languages. |
|||
|
|
|
Thanks Volkerk, I found the solution via your post
|
|||
|
|
|
It is also possible to get value/text by using xpath as below:
OR, You can get text/value by using css Selector as below:
|
|||||
|