robot.result package¶
Implements parsing execution results from XML output files.
The main public API of this package consists of the ExecutionResult()
factory method, that returns Result objects, and of the
ResultVisitor abstract class, that eases further processing
the results.
The model objects in the model module can also be considered to be
part of the public API, because they can be found inside the Result
object. They can also be inspected and modified as part of the normal test
execution by pre-Rebot modifiers and listeners.
It is highly recommended to import the public entry-points via the
robot.api package like in the example below. In those rare cases
where the aforementioned model objects are needed directly, they can be
imported from this package.
This package is considered stable.
Example¶
#!/usr/bin/env python
"""Usage: check_test_times.py seconds inpath [outpath]
Reads test execution result from an output XML file and checks that no test
took longer than given amount of seconds to execute.
Optional `outpath` specifies where to write processed results. If not given,
results are written over the original file.
"""
import sys
from robot.api import ExecutionResult, ResultVisitor
class ExecutionTimeChecker(ResultVisitor):
def __init__(self, max_seconds):
self.max_milliseconds = max_seconds * 1000
def visit_test(self, test):
if test.status == 'PASS' and test.elapsedtime > self.max_milliseconds:
test.status = 'FAIL'
test.message = 'Test execution took too long.'
def check_tests(seconds, inpath, outpath=None):
result = ExecutionResult(inpath)
result.visit(ExecutionTimeChecker(float(seconds)))
result.save(outpath)
if __name__ == '__main__':
try:
check_tests(*sys.argv[1:])
except TypeError:
print __doc__
Submodules¶
robot.result.configurer module¶
-
class
robot.result.configurer.SuiteConfigurer(remove_keywords=None, log_level=None, start_time=None, end_time=None, critical_tags=None, non_critical_tags=None, **base_config)[source]¶ Bases:
robot.model.configurer.SuiteConfigurerResult suite configured.
Calls suite’s
remove_keywords(),filter_messages()andset_criticality()methods and sets its start and end time based on the given named parameters.base_configis forwarded torobot.model.SuiteConfigurerthat will do further configuration based on them.-
visit_suite(suite)[source]¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
robot.result.executionerrors module¶
-
class
robot.result.executionerrors.ExecutionErrors(messages=None)[source]¶ Bases:
objectRepresents errors occurred during the execution of tests.
An error might be, for example, that importing a library has failed.
-
message_class¶ alias of
robot.result.model.Message
-
messages¶ A
list-like objectofMessageinstances.
-
robot.result.executionresult module¶
-
class
robot.result.executionresult.Result(source=None, root_suite=None, errors=None, rpa=None)[source]¶ Bases:
objectTest execution results.
Can be created based on XML output files using the
ExecutionResult()factory method. Also returned by therobot.running.TestSuite.runmethod.-
source= None¶ Path to the XML file where results are read from.
-
errors= None¶ Execution errors as an
ExecutionErrorsobject.
-
statistics¶ Test execution statistics.
Statistics are an instance of
Statisticsthat is created based on the containedsuiteand possibleconfiguration.Statistics are created every time this property is accessed. Saving them to a variable is thus often a good idea to avoid re-creating them unnecessarily:
from robot.api import ExecutionResult result = ExecutionResult('output.xml') result.configure(stat_config={'suite_stat_level': 2, 'tag_stat_combine': 'tagANDanother'}) stats = result.statistics print stats.total.critical.failed print stats.total.critical.passed print stats.tags.combined[0].total
-
return_code¶ Return code (integer) of test execution.
By default returns the number of failed critical tests (max 250), but can be
configuredto always return 0.
-
configure(status_rc=True, suite_config=None, stat_config=None)[source]¶ Configures the result object and objects it contains.
Parameters: - status_rc – If set to
False,return_codealways returns 0. - suite_config – A dictionary of configuration options passed
to
configure()method of the containedsuite. - stat_config – A dictionary of configuration options used when
creating
statistics.
- status_rc – If set to
-
save(path=None)[source]¶ Save results as a new output XML file.
Parameters: path – Path to save results to. If omitted, overwrites the original file.
-
visit(visitor)[source]¶ An entry point to visit the whole result object.
Parameters: visitor – An instance of ResultVisitor.Visitors can gather information, modify results, etc. See
resultpackage for a simple usage example.Notice that it is also possible to call
result.suite.visitif there is no need to visit the containedstatisticsorerrors.
-
-
class
robot.result.executionresult.CombinedResult(results=None)[source]¶ Bases:
robot.result.executionresult.ResultCombined results of multiple test executions.
-
configure(status_rc=True, suite_config=None, stat_config=None)¶ Configures the result object and objects it contains.
Parameters: - status_rc – If set to
False,return_codealways returns 0. - suite_config – A dictionary of configuration options passed
to
configure()method of the containedsuite. - stat_config – A dictionary of configuration options used when
creating
statistics.
- status_rc – If set to
-
handle_suite_teardown_failures()¶ Internal usage only.
-
return_code¶ Return code (integer) of test execution.
By default returns the number of failed critical tests (max 250), but can be
configuredto always return 0.
-
save(path=None)¶ Save results as a new output XML file.
Parameters: path – Path to save results to. If omitted, overwrites the original file.
-
set_execution_mode(other)¶ Set execution mode based on other result. Internal usage only.
-
statistics¶ Test execution statistics.
Statistics are an instance of
Statisticsthat is created based on the containedsuiteand possibleconfiguration.Statistics are created every time this property is accessed. Saving them to a variable is thus often a good idea to avoid re-creating them unnecessarily:
from robot.api import ExecutionResult result = ExecutionResult('output.xml') result.configure(stat_config={'suite_stat_level': 2, 'tag_stat_combine': 'tagANDanother'}) stats = result.statistics print stats.total.critical.failed print stats.total.critical.passed print stats.tags.combined[0].total
-
visit(visitor)¶ An entry point to visit the whole result object.
Parameters: visitor – An instance of ResultVisitor.Visitors can gather information, modify results, etc. See
resultpackage for a simple usage example.Notice that it is also possible to call
result.suite.visitif there is no need to visit the containedstatisticsorerrors.
-
robot.result.flattenkeywordmatcher module¶
robot.result.keywordremover module¶
-
class
robot.result.keywordremover.AllKeywordsRemover[source]¶ Bases:
robot.result.keywordremover._KeywordRemover-
visit_keyword(keyword)[source]¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
-
class
robot.result.keywordremover.PassedKeywordRemover[source]¶ Bases:
robot.result.keywordremover._KeywordRemover-
start_suite(suite)[source]¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_test(test)[source]¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
visit_keyword(keyword)[source]¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
-
class
robot.result.keywordremover.ByNameKeywordRemover(pattern)[source]¶ Bases:
robot.result.keywordremover._KeywordRemover-
start_keyword(kw)[source]¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
-
class
robot.result.keywordremover.ByTagKeywordRemover(pattern)[source]¶ Bases:
robot.result.keywordremover._KeywordRemover-
start_keyword(kw)[source]¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
-
class
robot.result.keywordremover.ForLoopItemsRemover[source]¶ Bases:
robot.result.keywordremover._KeywordRemover-
start_keyword(kw)[source]¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
-
class
robot.result.keywordremover.WaitUntilKeywordSucceedsRemover[source]¶ Bases:
robot.result.keywordremover._KeywordRemover-
start_keyword(kw)[source]¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
-
class
robot.result.keywordremover.WarningAndErrorFinder[source]¶ Bases:
robot.model.visitor.SuiteVisitor-
start_suite(suite)[source]¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)[source]¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_keyword(keyword)[source]¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_message(msg)[source]¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
robot.result.merger module¶
-
class
robot.result.merger.Merger(result)[source]¶ Bases:
robot.model.visitor.SuiteVisitor-
start_suite(suite)[source]¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_test(test)[source]¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
robot.result.messagefilter module¶
-
class
robot.result.messagefilter.MessageFilter(loglevel)[source]¶ Bases:
robot.model.visitor.SuiteVisitor-
start_keyword(keyword)[source]¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
robot.result.model module¶
Module implementing result related model objects.
During test execution these objects are created internally by various runners. At that time they can inspected and modified by listeners.
When results are parsed from XML output files after execution to be able to
create logs and reports, these objects are created by the
ExecutionResult() factory method.
At that point they can be inspected and modified by pre-Rebot modifiers.
The ExecutionResult() factory method can also be used
by custom scripts and tools. In such usage it is often easiest to inspect and
modify these objects using the visitor interface.
-
class
robot.result.model.Message(message='', level='INFO', html=False, timestamp=None, parent=None)[source]¶ Bases:
robot.model.message.MessageRepresents a single log message.
See the base class for documentation of attributes not documented here.
-
copy(**attributes)¶ Return shallow copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.copy(name='New name').See also
deepcopy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
deepcopy(**attributes)¶ Return deep copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.deepcopy(name='New name').See also
copy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
html¶
-
html_message¶ Returns the message content as HTML.
-
level¶
-
message¶
-
parent¶
-
timestamp¶
-
visit(visitor)[source]¶ Visitor interfaceentry-point.
-
-
class
robot.result.model.Keyword(kwname='', libname='', doc='', args=(), assign=(), tags=(), timeout=None, type='kw', status='FAIL', starttime=None, endtime=None)[source]¶ Bases:
robot.model.keyword.KeywordRepresents results of a single keyword.
See the base class for documentation of attributes not documented here.
-
kwname¶ Name of the keyword without library or resource name.
-
libname¶ Name of the library or resource containing this keyword.
-
status¶ Execution status as a string. Typically
PASSorFAIL, but library keywords have statusNOT_RUNin the dry-ryn mode. See alsopassed.
-
starttime¶ Keyword execution start time in format
%Y%m%d %H:%M:%S.%f.
-
endtime¶ Keyword execution end time in format
%Y%m%d %H:%M:%S.%f.
-
message¶ Keyword status message. Used only if suite teardowns fails.
-
elapsedtime¶ Total execution time in milliseconds.
-
name¶ Keyword name in format
libname.kwname.Just
kwnameiflibnameis empty. In practice that is the case only with user keywords in the same file as the executed test case or test suite.Cannot be set directly. Set
libnameandkwnameseparately instead.
-
FOR_ITEM_TYPE= 'foritem'¶
-
FOR_LOOP_TYPE= 'for'¶
-
KEYWORD_TYPE= 'kw'¶
-
SETUP_TYPE= 'setup'¶
-
TEARDOWN_TYPE= 'teardown'¶
-
args¶
-
assign¶
-
copy(**attributes)¶ Return shallow copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.copy(name='New name').See also
deepcopy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
deepcopy(**attributes)¶ Return deep copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.deepcopy(name='New name').See also
copy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
doc¶
-
id¶ Keyword id in format like
s1-t3-k1.See
TestSuite.idfor more information.
-
keyword_class= None¶
-
parent¶ Parent test suite, test case or keyword.
Keyword tags as a
Tagsobject.
-
timeout¶
-
type¶
-
visit(visitor)[source]¶ Visitor interfaceentry-point.
-
-
class
robot.result.model.TestCase(name='', doc='', tags=None, timeout=None, status='FAIL', message='', starttime=None, endtime=None)[source]¶ Bases:
robot.model.testcase.TestCaseRepresents results of a single test case.
See the base class for documentation of attributes not documented here.
-
message¶ Test message. Typically a failure message but can be set also when test passes.
-
starttime¶ Test case execution start time in format
%Y%m%d %H:%M:%S.%f.
-
endtime¶ Test case execution end time in format
%Y%m%d %H:%M:%S.%f.
-
elapsedtime¶ Total execution time in milliseconds.
-
critical¶ True/Falsedepending on is the test considered critical.Criticality is determined based on test’s
tagsandcriticalityof theparentsuite.
-
copy(**attributes)¶ Return shallow copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.copy(name='New name').See also
deepcopy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
deepcopy(**attributes)¶ Return deep copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.deepcopy(name='New name').See also
copy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
doc¶
-
id¶ Test case id in format like
s1-t3.See
TestSuite.idfor more information.
-
longname¶ Test name prefixed with the long name of the parent suite.
-
name¶
-
parent¶
Test tags as a
Tagsobject.
-
timeout¶
-
visit(visitor)[source]¶ Visitor interfaceentry-point.
-
-
class
robot.result.model.TestSuite(name='', doc='', metadata=None, source=None, message='', starttime=None, endtime=None, rpa=False)[source]¶ Bases:
robot.model.testsuite.TestSuiteRepresents results of a single test suite.
See the base class for documentation of attributes not documented here.
-
message¶ Possible suite setup or teardown error message.
-
starttime¶ Suite execution start time in format
%Y%m%d %H:%M:%S.%f.
-
endtime¶ Suite execution end time in format
%Y%m%d %H:%M:%S.%f.
-
passed¶ Trueif no critical test has failed,Falseotherwise.
-
status¶ 'PASS'if no critical test has failed,'FAIL'otherwise.
-
statistics¶ Suite statistics as a
TotalStatisticsobject.Recreated every time this property is accessed, so saving the results to a variable and inspecting it is often a good idea:
stats = suite.statistics print(stats.critical.failed) print(stats.all.total) print(stats.message)
-
full_message¶ Combination of
messageandstat_message.
-
stat_message¶ String representation of the
statistics.
-
elapsedtime¶ Total execution time in milliseconds.
-
criticality¶ Used by tests to determine are they considered critical or not.
Normally configured using
--criticaland--noncriticalcommand line options. Can be set programmatically usingset_criticality()of the root test suite.
-
set_criticality(critical_tags=None, non_critical_tags=None)[source]¶ Sets which tags are considered critical and which non-critical.
Parameters: - critical_tags – Tags or patterns considered critical. See
the documentation of the
--criticaloption for more details. - non_critical_tags – Tags or patterns considered non-critical. See
the documentation of the
--noncriticaloption for more details.
Tags can be given as lists of strings or, when giving only one, as single strings. This information is used by tests to determine are they considered critical or not.
Criticality can be set only to the root test suite.
- critical_tags – Tags or patterns considered critical. See
the documentation of the
-
remove_keywords(how)[source]¶ Remove keywords based on the given condition.
Parameters: how – What approach to use when removing keywords. Either ALL,PASSED,FOR,WUKS, orNAME:<pattern>.For more information about the possible values see the documentation of the
--removekeywordscommand line option.
-
configure(**options)[source]¶ A shortcut to configure a suite using one method call.
Can only be used with the root test suite.
Parameters: options – Passed to SuiteConfigurerthat will then set suite attributes, callfilter(), etc. as needed.Example:
suite.configure(remove_keywords='PASSED', critical_tags='smoke', doc='Smoke test results.')
-
copy(**attributes)¶ Return shallow copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.copy(name='New name').See also
deepcopy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
deepcopy(**attributes)¶ Return deep copy of this object.
Parameters: attributes – Attributes to be set for the returned copy automatically. For example, test.deepcopy(name='New name').See also
copy(). The difference between these two is the same as with the standardcopy.copyandcopy.deepcopyfunctions that these methods also use internally.New in Robot Framework 3.0.1.
-
doc¶
-
filter(included_suites=None, included_tests=None, included_tags=None, excluded_tags=None)[source]¶ Select test cases and remove others from this suite.
Parameters have the same semantics as
--suite,--test,--include, and--excludecommand line options. All of them can be given as a list of strings, or when selecting only one, as a single string.Child suites that contain no tests after filtering are automatically removed.
Example:
suite.filter(included_tests=['Test 1', '* Example'], included_tags='priority-1')
-
id¶ An automatically generated unique id.
The root suite has id
s1, its child suites have idss1-s1,s1-s2, …, their child suites get idss1-s1-s1,s1-s1-s2, …,s1-s2-s1, …, and so on.The first test in a suite has an id like
s1-t1, the second has an ids1-t2, and so on. Similarly keywords in suites (setup/teardown) and in tests get ids likes1-k1,s1-t1-k1, ands1-s4-t2-k5.
-
longname¶ Suite name prefixed with the long name of the parent suite.
-
metadata¶ Free test suite metadata as a dictionary.
-
name¶ Test suite name. If not set, constructed from child suite names.
-
parent¶
-
rpa¶
Add and/or remove specified tags to the tests in this suite.
Parameters: - add – Tags to add as a list or, if adding only one, as a single string.
- remove – Tags to remove as a list or as a single string.
Can be given as patterns where
*and?work as wildcards. - persist – Add/remove specified tags also to new tests added to this suite in the future.
-
source¶
-
suites¶ Child suites as a
TestSuitesobject.
-
test_count¶ Number of the tests in this suite, recursively.
-
visit(visitor)[source]¶ Visitor interfaceentry-point.
-
robot.result.resultbuilder module¶
-
robot.result.resultbuilder.ExecutionResult(*sources, **options)[source]¶ Factory method to constructs
Resultobjects.Parameters: - sources – Path(s) to the XML output file(s).
- options – Configuration options.
Using
merge=Truecauses multiple results to be combined so that tests in the latter results replace the ones in the original. Settingrpaeither toTrue(RPA mode) orFalse(test automation) sets execution mode explicitly. By default it is got from processed output files and conflicting modes cause an error. Other options are passed directly to theExecutionResultBuilderobject used internally.
Returns: Resultinstance.Should be imported by external code via the
robot.apipackage. See therobot.resultpackage for a usage example.
-
class
robot.result.resultbuilder.ExecutionResultBuilder(source, include_keywords=True, flattened_keywords=None)[source]¶ Bases:
objectBuilds
Resultobjects based on output files.Instead of using this builder directly, it is recommended to use the
ExecutionResult()factory method.Parameters: - source – Path to the XML output file to build
Resultobjects from. - include_keywords – Boolean controlling whether to include keyword information in the result or not. Keywords are not needed when generating only report.
- flatten_keywords – List of patterns controlling what keywords to
flatten. See the documentation of
--flattenkeywordsoption for more details.
- source – Path to the XML output file to build
-
class
robot.result.resultbuilder.RemoveKeywords[source]¶ Bases:
robot.model.visitor.SuiteVisitor-
start_suite(suite)[source]¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_test(test)[source]¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
robot.result.suiteteardownfailed module¶
-
class
robot.result.suiteteardownfailed.SuiteTeardownFailureHandler[source]¶ Bases:
robot.model.visitor.SuiteVisitor-
visit_test(test)[source]¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
visit_keyword(keyword)[source]¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
-
class
robot.result.suiteteardownfailed.SuiteTeardownFailed(error)[source]¶ Bases:
robot.model.visitor.SuiteVisitor-
visit_test(test)[source]¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
visit_keyword(keyword)[source]¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
robot.result.visitor module¶
Visitors can be used to easily traverse result structures.
This module contains ResultVisitor for traversing the whole
Result object. It extends
SuiteVisitor that contains visiting logic
for the test suite structure.
-
class
robot.result.visitor.ResultVisitor[source]¶ Bases:
robot.model.visitor.SuiteVisitorAbstract class to conveniently travel
Resultobjects.A visitor implementation can be given to the
visit()method of a result object. This will cause the result object to be traversed and the visitor’svisit_x(),start_x(), andend_x()methods to be called for each suite, test, keyword and message, as well as for errors, statistics, and other information in the result object. See methods below for a full list of available visitor methods.See the
result package leveldocumentation for more information about handling results and a concrete visitor example. For more information about the visitor algorithm see documentation inrobot.model.visitormodule.-
end_keyword(keyword)¶ Called when keyword ends. Default implementation does nothing.
-
end_message(msg)¶ Called when message ends. Default implementation does nothing.
-
end_suite(suite)¶ Called when suite ends. Default implementation does nothing.
-
end_test(test)¶ Called when test ends. Default implementation does nothing.
-
start_keyword(keyword)¶ Called when keyword starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_message(msg)¶ Called when message starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_suite(suite)¶ Called when suite starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
start_test(test)¶ Called when test starts. Default implementation does nothing.
Can return explicit
Falseto stop visiting.
-
visit_keyword(kw)¶ Implements traversing through the keyword and its child keywords.
Can be overridden to allow modifying the passed in
kwwithout callingstart_keyword()orend_keyword()nor visiting child keywords.
-
visit_message(msg)¶ Implements visiting the message.
Can be overridden to allow modifying the passed in
msgwithout callingstart_message()orend_message().
-
visit_suite(suite)¶ Implements traversing through the suite and its direct children.
Can be overridden to allow modifying the passed in
suitewithout callingstart_suite()orend_suite()nor visiting child suites, tests or keywords (setup and teardown) at all.
-
visit_test(test)¶ Implements traversing through the test and its keywords.
Can be overridden to allow modifying the passed in
testwithout callingstart_test()orend_test()nor visiting keywords.
-
robot.result.xmlelementhandlers module¶
-
class
robot.result.xmlelementhandlers.XmlElementHandler(execution_result, root_handler=None)[source]¶ Bases:
object
-
class
robot.result.xmlelementhandlers.RootHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
end(elem, result)¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.RobotHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'robot'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
-
class
robot.result.xmlelementhandlers.SuiteHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'suite'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
-
class
robot.result.xmlelementhandlers.RootSuiteHandler[source]¶ Bases:
robot.result.xmlelementhandlers.SuiteHandler-
end(elem, result)¶
-
get_child_handler(elem)¶
-
tag= 'suite'¶
-
-
class
robot.result.xmlelementhandlers.TestCaseHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'test'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
-
class
robot.result.xmlelementhandlers.KeywordHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'kw'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
-
class
robot.result.xmlelementhandlers.MessageHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'msg'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.KeywordStatusHandler[source]¶ Bases:
robot.result.xmlelementhandlers._StatusHandler-
get_child_handler(elem)¶
-
start(elem, result)¶
-
tag= 'status'¶
-
-
class
robot.result.xmlelementhandlers.SuiteStatusHandler[source]¶ Bases:
robot.result.xmlelementhandlers._StatusHandler-
get_child_handler(elem)¶
-
start(elem, result)¶
-
tag= 'status'¶
-
-
class
robot.result.xmlelementhandlers.TestStatusHandler[source]¶ Bases:
robot.result.xmlelementhandlers._StatusHandler-
get_child_handler(elem)¶
-
start(elem, result)¶
-
tag= 'status'¶
-
-
class
robot.result.xmlelementhandlers.DocHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'doc'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.MetadataHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'metadata'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.MetadataItemHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'item'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.TagsHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'tags'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.TagHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'tag'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.TimeoutHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'timeout'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.AssignHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'assign'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.AssignVarHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'var'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.ArgumentsHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'arguments'¶
-
end(elem, result)¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-
-
class
robot.result.xmlelementhandlers.ArgumentHandler[source]¶ Bases:
robot.result.xmlelementhandlers._Handler-
tag= 'arg'¶
-
get_child_handler(elem)¶
-
start(elem, result)¶
-