-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathbuiltin.js
92 lines (92 loc) · 3.57 KB
/
builtin.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
export default () => ([
{
name: 'Builtin',
href: 'https://robotframework.org/robotframework/latest/libraries/BuiltIn.html',
description: 'Provides a set of often needed generic keywords. Always automatically available without imports.',
tags: ['library']
},
{
name: 'Collections',
href: 'https://robotframework.org/robotframework/latest/libraries/Collections.html',
description: 'Provides a set of keywords for handling Python lists and dictionaries.',
tags: ['library']
},
{
name: 'DateTime',
href: 'https://robotframework.org/robotframework/latest/libraries/DateTime.html',
description: 'Library for date and time conversions.',
tags: ['library']
},
{
name: 'Dialogs',
href: 'https://robotframework.org/robotframework/latest/libraries/Dialogs.html',
description: 'Provides means for pausing the execution and getting input from users.',
tags: ['library']
},
{
name: 'OperatingSystem',
href: 'https://robotframework.org/robotframework/latest/libraries/OperatingSystem.html',
description: 'Enables various operating system related tasks to be performed in the system where Robot Framework is running.',
tags: ['library']
},
{
name: 'Process',
href: 'https://robotframework.org/robotframework/latest/libraries/Process.html',
description: 'Library for running processes in the system.',
tags: ['library']
},
{
name: 'Remote',
href: 'https://github.com/robotframework/RemoteInterface',
description: 'Special library acting as a proxy between Robot Framework and libraries elsewhere. Actual libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol.',
tags: ['library']
},
{
name: 'Screenshot',
href: 'https://robotframework.org/robotframework/latest/libraries/Screenshot.html',
description: 'Provides keywords to capture screenshots of the desktop.',
tags: ['library']
},
{
name: 'String',
href: 'https://robotframework.org/robotframework/latest/libraries/String.html',
description: 'Library for generating, modifying and verifying strings.',
tags: ['library']
},
{
name: 'Telnet',
href: 'https://robotframework.org/robotframework/latest/libraries/Telnet.html',
description: 'Makes it possible to connect to Telnet servers and execute commands on the opened connections.',
tags: ['library']
},
{
name: 'XML',
href: 'https://robotframework.org/robotframework/latest/libraries/XML.html',
description: 'Library for generating, modifying and verifying XML files.',
tags: ['library']
},
{
name: 'Rebot',
description: 'Generate logs and reports based on XML outputs and for combining multiple outputs together.',
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#post-processing-outputs',
tags: ['tool']
},
{
name: 'Libdoc',
description: 'Generate keyword documentation for test libraries and resource files.',
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#libdoc',
tags: ['tool']
},
{
name: 'Testdoc',
description: 'Generate high level HTML documentation based on Robot Framework test cases.',
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#testdoc',
tags: ['tool']
},
{
name: 'Tidy',
description: 'Cleaning up and changing format of Robot Framework test data files.',
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#tidy',
tags: ['tool']
}
])