-
Notifications
You must be signed in to change notification settings - Fork 48
The RobotTable class
boakley edited this page Nov 30, 2014
·
1 revision
The RobotTable class is the superclass for representing one table in a suite. A table is a section in the file being processed that begins with a header (eg: *** Settings ***
, *** Testcases ***
, etc) and ends with the next header or the end of the file.
The Table class has the following subclasses:
-
UnknownTable is the class reserved for tables that are unknown to robot. For example, a table with a header like
** Bogus Table **
will be represented as an UnknownTable. -
SettingTable represents a robotframework settings table
-
VariableTable represents a robotframework variable table
-
TestcaseTable represents a robotframework testcase table
-
KeywordTable represents a robotframework keyword table