Files
EWF/library/test/selenium/src/web_element.e
2013-04-15 16:16:16 -03:00

27 lines
501 B
Plaintext

note
description: "An object in the WebDriver API that represents a DOM element on the page."
author: ""
date: "$Date$"
revision: "$Revision$"
class
WEB_ELEMENT
create
make
feature
make
do
end
feature -- Access
element : detachable STRING_32
--The opaque ID assigned to the element by the server.
--This ID should be used in all subsequent commands issued against the element.
feature -- Change Element
set_element (an_element : STRING)
do
element := an_element
end
end