|
| def | __contains__ (self, name) |
| |
| def | __getitem__ (self, name) |
| |
| def | __init__ (self, settings) |
| |
| def | __setitem__ (self, name, value) |
| |
| def | as_dict (self, decoration=True) |
| |
| def | end_keyword (self) |
| |
| def | end_suite (self) |
| |
| def | end_test (self) |
| |
| def | replace_list (self, items, replace_until=None, ignore_errors=False) |
| |
| def | replace_scalar (self, items, ignore_errors=False) |
| |
| def | replace_string (self, string, custom_unescaper=None, ignore_errors=False) |
| |
| def | resolve_delayed (self) |
| |
| def | set_from_file (self, path, args, overwrite=False) |
| |
| def | set_from_variable_table (self, variables, overwrite=False) |
| |
| def | set_global (self, name, value) |
| |
| def | set_keyword (self, name, value) |
| |
| def | set_local_variable (self, name, value) |
| |
| def | set_suite (self, name, value, top=False, children=False) |
| |
| def | set_test (self, name, value) |
| |
| def | start_keyword (self) |
| |
| def | start_suite (self) |
| |
| def | start_test (self) |
| |
Definition at line 28 of file scopes.py.
◆ __init__()
| def robot.variables.scopes.VariableScopes.__init__ |
( |
|
self, |
|
|
|
settings |
|
) |
| |
◆ __contains__()
| def robot.variables.scopes.VariableScopes.__contains__ |
( |
|
self, |
|
|
|
name |
|
) |
| |
◆ __getitem__()
| def robot.variables.scopes.VariableScopes.__getitem__ |
( |
|
self, |
|
|
|
name |
|
) |
| |
◆ __setitem__()
| def robot.variables.scopes.VariableScopes.__setitem__ |
( |
|
self, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
◆ _all_scopes()
| def robot.variables.scopes.VariableScopes._all_scopes |
( |
|
self | ) |
|
|
private |
◆ _scopes_until_suite()
| def robot.variables.scopes.VariableScopes._scopes_until_suite |
( |
|
self | ) |
|
|
private |
◆ _scopes_until_test()
| def robot.variables.scopes.VariableScopes._scopes_until_test |
( |
|
self | ) |
|
|
private |
◆ _set_global_suite_or_test()
| def robot.variables.scopes.VariableScopes._set_global_suite_or_test |
( |
|
self, |
|
|
|
scope, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
|
private |
◆ as_dict()
| def robot.variables.scopes.VariableScopes.as_dict |
( |
|
self, |
|
|
|
decoration = True |
|
) |
| |
◆ current()
| def robot.variables.scopes.VariableScopes.current |
( |
|
self | ) |
|
|
private |
◆ end_keyword()
| def robot.variables.scopes.VariableScopes.end_keyword |
( |
|
self | ) |
|
◆ end_suite()
| def robot.variables.scopes.VariableScopes.end_suite |
( |
|
self | ) |
|
◆ end_test()
| def robot.variables.scopes.VariableScopes.end_test |
( |
|
self | ) |
|
◆ replace_list()
| def robot.variables.scopes.VariableScopes.replace_list |
( |
|
self, |
|
|
|
items, |
|
|
|
replace_until = None, |
|
|
|
ignore_errors = False |
|
) |
| |
◆ replace_scalar()
| def robot.variables.scopes.VariableScopes.replace_scalar |
( |
|
self, |
|
|
|
items, |
|
|
|
ignore_errors = False |
|
) |
| |
◆ replace_string()
| def robot.variables.scopes.VariableScopes.replace_string |
( |
|
self, |
|
|
|
string, |
|
|
|
custom_unescaper = None, |
|
|
|
ignore_errors = False |
|
) |
| |
◆ resolve_delayed()
| def robot.variables.scopes.VariableScopes.resolve_delayed |
( |
|
self | ) |
|
◆ set_from_file()
| def robot.variables.scopes.VariableScopes.set_from_file |
( |
|
self, |
|
|
|
path, |
|
|
|
args, |
|
|
|
overwrite = False |
|
) |
| |
◆ set_from_variable_table()
| def robot.variables.scopes.VariableScopes.set_from_variable_table |
( |
|
self, |
|
|
|
variables, |
|
|
|
overwrite = False |
|
) |
| |
◆ set_global()
| def robot.variables.scopes.VariableScopes.set_global |
( |
|
self, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
◆ set_keyword()
| def robot.variables.scopes.VariableScopes.set_keyword |
( |
|
self, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
◆ set_local_variable()
| def robot.variables.scopes.VariableScopes.set_local_variable |
( |
|
self, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
◆ set_suite()
| def robot.variables.scopes.VariableScopes.set_suite |
( |
|
self, |
|
|
|
name, |
|
|
|
value, |
|
|
|
top = False, |
|
|
|
children = False |
|
) |
| |
◆ set_test()
| def robot.variables.scopes.VariableScopes.set_test |
( |
|
self, |
|
|
|
name, |
|
|
|
value |
|
) |
| |
◆ start_keyword()
| def robot.variables.scopes.VariableScopes.start_keyword |
( |
|
self | ) |
|
◆ start_suite()
| def robot.variables.scopes.VariableScopes.start_suite |
( |
|
self | ) |
|
◆ start_test()
| def robot.variables.scopes.VariableScopes.start_test |
( |
|
self | ) |
|
◆ _global
| robot.variables.scopes.VariableScopes._global |
|
private |
◆ _scopes
| robot.variables.scopes.VariableScopes._scopes |
|
private |
◆ _suite
| robot.variables.scopes.VariableScopes._suite |
|
private |
◆ _test
| robot.variables.scopes.VariableScopes._test |
|
private |
◆ _variables_set
| robot.variables.scopes.VariableScopes._variables_set |
|
private |
◆ _all_scopes
| robot.variables.scopes.VariableScopes._all_scopes = property |
|
staticprivate |
◆ _scopes_until_suite
| robot.variables.scopes.VariableScopes._scopes_until_suite = property |
|
staticprivate |
◆ _scopes_until_test
| robot.variables.scopes.VariableScopes._scopes_until_test = property |
|
staticprivate |
◆ current
| robot.variables.scopes.VariableScopes.current = property |
|
static |
The documentation for this class was generated from the following file: