Initial import Selenium binding

This commit is contained in:
jvelilla
2013-04-12 09:16:52 -03:00
parent a547cbaeb1
commit 3d36c353fc
31 changed files with 2010 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
note
description: "Object describing a log entry"
author: ""
date: "$Date$"
revision: "$Revision$"
class
WEB_DRIVER_LOG
feature
timestamp : NATURAL_32
--The timestamp of the entry.
level : detachable STRING_32
--The log level of the entry, for example, "INFO" (see log levels).
--ALL All log messages. Used for fetching of logs and configuration of logging.
--DEBUG Messages for debugging.
--INFO Messages with user information.
--WARNING Messages corresponding to non-critical problems.
--SEVERE Messages corresponding to critical errors.
--OFF No log messages. Used for configuration of logging.
message : detachable STRING_32
--The log message.
end