-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathlearning.js
62 lines (62 loc) · 2.74 KB
/
learning.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
export default () => ([
{
name: 'Robot Framework Docs',
description: 'Learn with guides and examples that cover Robot Framework all the way from installation to advanced usage.',
href: 'https://docs.robotframework.org/'
},
{
name: 'User Guide',
description: 'Reference manual explaining all Robot Framework features in detail.',
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html'
},
{
name: 'Public API',
description: 'Public API for writing your own tools against Robot Framework.',
href: 'https://robot-framework.readthedocs.org/en/latest/'
},
{
name: 'How to write good test cases',
description: 'Guidelines for writing good test cases using Robot Framework.',
href: 'https://github.com/robotframework/HowToWriteGoodTestCases/blob/master/HowToWriteGoodTestCases.rst'
},
{
name: 'Dos And Don\'ts',
description: 'Slide set loosely based on \'How to write good test cases\' guidelines.',
href: 'https://www.slideshare.net/pekkaklarck/robot-framework-dos-and-donts'
},
{
name: 'Introduction Slides',
description: 'Generic Robot Framework introduction slides.',
href: 'https://www.slideshare.net/pekkaklarck/robot-framework-introduction'
},
{
name: 'Robot Framework katas',
description: 'Series of exercises and examples how to get started with test automation. No prior knowledge of test automation required.',
href: 'https://github.com/eficode-academy/rf-katas'
},
{
name: 'Web Demo',
description: 'Demonstrates how to create tests and higher level keywords. The system under test is a simple web page that is tested using SeleniumLibrary.',
href: 'https://github.com/robotframework/WebDemo'
},
{
name: 'Robot Demo',
description: 'Demonstrates how to create tests and test libraries. The system under test is a simple calculator that is tested using a custom library.',
href: 'https://github.com/robotframework/RobotDemo'
},
{
name: 'Demo: ATDD with Robot Framework',
description: 'How to use Robot Framework for Acceptance Test Driven Development (ATDD) a.k.a. Specification by Example.',
href: 'https://code.google.com/p/atdd-with-robot-framework/'
},
{
name: 'Demo: Using C with Robot Framework',
description: 'This simple example demonstrates how to use C language from Robot Framework test libraries.',
href: 'https://bitbucket.org/robotframework/cdemo'
},
{
name: 'Demo: Remote interface',
description: 'Example demonstrates how to use Robot Framework\'s <a href="https://github.com/robotframework/RemoteInterface">Remote interface</a> to call test libraries written in any programming language.',
href: 'https://github.com/jg8481/robotframework-scala-remote-library'
}
])