Files
EWF/library/test/selenium/examples/application.e
jvelilla dcdc700bac Added a simple search example.
Updated web_driver, use the API as delegation instead of inheritance.
Updated web_element class.
2013-04-30 10:19:34 -03:00

33 lines
379 B
Plaintext

note
description : "project application root class"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Run application.
do
execute_search
end
execute_example1
do
(create {EXAMPLE_1}).test
end
execute_search
do
(create {EXAMPLE_SEARCH}).search
end
end