$browser.links.each do |link|
puts link.attribute_value("class")
end
How do I get all the visible/existing links in the put statement?
How do I get all the visible/existing links in the put statement? |
|||
|
|
|
You can also write it by using shorter syntax like this:
|
|||
|
|
|
This will output value of
This will output value of
|
|||
|
|
|
If you require the class name of the links, you can use
or if you require any specific attribute of the link, you can use
|
|||
|
|