forked from robotframework/robotframework.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1602 lines (1350 loc) · 84.2 KB
/
index.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<title>Robot Framework</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-responsive.css">
<link rel="stylesheet" type="text/css" href="css/robotframework.css">
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 1000px), only screen and (max-device-width: 1000px)" href="css/small-screens.css" />
<link rel="stylesheet" type="text/css" media="only screen and (max-width: 598px), only screen and (max-device-width: 598px)" href="css/small-devices.css" />
<link rel="stylesheet" type="text/css" href="css/pygments.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/robotframework.js"></script>
</head>
<body data-spy="scroll" data-offset="70">
<div class="row green">
<div id="header" class="content-area">
<div id="main-headers-container" class="cf">
<div id="main-headers">
<h1>ROBOT FRAMEWORK</h1>
<hr />
<span class="slogan" id="main-headers-slogan">
Generic test automation framework for acceptance testing and ATDD
</span>
</div>
<div id="main-logo"><div></div></div>
</div>
</div>
</div>
<div class="row dark" id="menu-container">
<div id="menu" class="navbar">
<div class="navbar-inner">
<ul class="nav cf">
<li><a href="#introduction">INTRODUCTION</a></li>
<li><a href="#examples">EXAMPLES</a></li>
<li><a href="#libraries">LIBRARIES</a></li>
<li><a href="#tools">TOOLS</a></li>
<li><a href="#documentation">DOCUMENTATION</a></li>
<li><a href="#support">SUPPORT</a></li>
<li><a href="#users">USERS</a></li>
<li class="external-link">
<a href="http://robotframework.org/foundation" target="_blank"
title="ROBOT FRAMEWORK FOUNDATION">
FOUNDATION <sup>◳</sup>
</a>
</li>
<li class="external-link">
<a href="http://robocon.io" target="_blank"
title="ROBOCON 2018 CONFERENCE">
ROBOCON <sup>◳</sup>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row" id="introduction">
<div class="content-area">
<div class="column two-thirds introduction-text">
<p>
<b>Robot Framework</b> is a generic test automation framework for
acceptance testing and acceptance test-driven development
(ATDD). It has easy-to-use tabular test data syntax and it
utilizes the keyword-driven testing approach. Its testing
capabilities can be extended by test libraries implemented
either with Python or Java, and users can create new
higher-level keywords from existing ones using the same
syntax that is used for creating test cases.
</p>
<p>
Robot Framework project is hosted on
<a href="https://github.com/robotframework/robotframework" target="_blank">GitHub</a>
where you can find further documentation,
source code, and issue tracker. Downloads are hosted at
<a href="https://pypi.python.org/pypi/robotframework" target="_blank">PyPI</a>.
The framework has a rich ecosystem around it consisting of various
generic <a href="#libraries">test libraries</a>
and <a href="#tools">tools</a> that are developed
as separate projects.
</p>
<p>
Robot Framework is operating system and application independent.
The core framework is implemented using
<a href="http://python.org" target="_blank">Python</a> and
runs also on
<a href="http://jython.org" target="_blank">Jython</a> (JVM) and
<a href="http://ironpython.net" target="_blank">IronPython</a> (.NET).
</p>
<div class="introduction-buttons cf">
<a href="#libraries"><div class="button orange">GET LIBRARIES<hr /></div></a>
<a href="#documentation"><div class="button green">READ DOCS<hr/></div></a>
<a href="#tools"><div class="button blue">USE TOOLS<hr/></div></a>
</div>
<p>
Robot Framework itself is open source software released
under <a href="http://www.apache.org/licenses/LICENSE-2.0.html" target="_blank">Apache
License 2.0</a>, and most of the libraries and tools in the
ecosystem are also open source. The framework was initially
developed at <a href="http://networks.nokia.com" target="_blank">Nokia
Networks</a> and it is nowadays sponsored by
<a href="http://robotframework.org/foundation" target="_blank">Robot Framework
Foundation</a>.
</p>
</div>
<div class="column one-thirds" id="news">
<a class="twitter-timeline" data-dnt="true" href="https://twitter.com/robotframework" data-widget-id="321945669290033155">Tweets by @robotframework</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
<div class="row red" id="architecture">
<div class="content-area">
<div class="column one-thirds">
<div class="column-content">
<h2>Clear.</h2>
<hr class="green" />
<p>
Robot Framework has a modular architecture that can be extended
with bundled and self-made <a href="#libraries">test
libraries</a>.
</p>
<p>
Test data is defined in files using the syntax shown in the
<a href="#examples">examples</a> below. A file containing test cases creates a test
suite and placing these files into directories creates a
nested structure of test suites.
</p>
</div>
</div>
<div class="column one-thirds">
<div class="column-content">
<h2>Easy.</h2>
<hr class="orange" />
<p>
When test execution is started, the framework first parses the
test data. It then utilizes keywords provided by the test
libraries to interact with the system under test. Libraries
can communicate with the system either directly or using other
test tools as drivers.
</p>
<p>
Test execution is started from the command line. As a result
you get report and log in HTML format as well as an XML
output. These provide extensive look into what your system does.
</p>
</div>
</div>
<div class="column one-thirds">
<div class="column-content">
<h2>Modular.</h2>
<hr class="blue" />
<img alt="Robot Framework architecture"
title="Robot Framework architecture"
src="img/architecture.png"
data-toggle="modal"
data-target="#architecture-image-modal" />
<span class="caption pull-right">Click for bigger version!</span>
</div>
</div>
</div>
<div class="modal hide fade" role="dialog" id="architecture-image-modal" tabindex="-1">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<img src="img/architecture-big.png" alt="Robot Framework architecture" title="Robot Framework architecture" />
</div>
<div class="modal-footer"></div>
</div>
</div>
<div class="row dark" id="examples">
<div class="content-area">
<h1 class="row-header">EXAMPLES</h1>
<div id="example-carousel" class="carousel slide">
<div class="carousel-inner">
<div class="item active cf">
<div class="column half vertical-align">
<div class="vertical-content">
<div class="highlight"><pre><span class="gh">*** Settings ***</span><span class="p"></span>
<span class="kn">Documentation</span><span class="p"> </span><span class="s">A test suite with a single test for valid login.</span><span class="p"></span>
<span class="p">...</span>
<span class="p">... </span><span class="s">This test has a workflow that is created using keywords in</span><span class="p"></span>
<span class="p">... </span><span class="s">the imported resource file.</span><span class="p"></span>
<span class="kn">Resource</span><span class="p"> </span><span class="nn">resource.txt</span><span class="p"></span>
<span class="gh">*** Test Cases ***</span><span class="p"></span>
<span class="gu">Valid Login</span><span class="p"></span>
<span class="p"> </span><span class="nf">Open Browser To Login Page</span><span class="p"></span>
<span class="p"> </span><span class="nf">Input Username</span><span class="p"> </span><span class="s">demo</span><span class="p"></span>
<span class="p"> </span><span class="nf">Input Password</span><span class="p"> </span><span class="s">mode</span><span class="p"></span>
<span class="p"> </span><span class="nf">Submit Credentials</span><span class="p"></span>
<span class="p"> </span><span class="nf">Welcome Page Should Be Open</span><span class="p"></span>
<span class="p"> [</span><span class="kn">Teardown</span><span class="p">] </span><span class="nf">Close Browser</span><span class="p"></span>
</pre></div>
</div>
</div>
<div class="column half vertical-align">
<div class="caption vertical-content">
<p>
Let's start with a real-life example from our <a href="https://bitbucket.org/robotframework/webdemo" target="_blank">web demo project</a>. Here we have a test suite with one test case which tests that login is valid. As you can see, test data syntax is based on <span class="italic">keywords</span>.
</p>
<p>
Keywords are composable, meaning you can define new keywords that use pre-existing keywords. This way, you can abstract details of testing to something that makes immediate sense; for example, we don't need to know what exactly the step <span class="teletype">Submit Credentials</span> actually does, unless we want to. Test cases are therefore clear and readable, with just the right level of abstraction to convey the <span class="italic">intent</span> of the test, rather than the nuts and bolts.
</p>
<p>
See next example for what you're going to get once this example is run!
</p>
</div>
</div>
</div>
<div class="item cf">
<div class="column half vertical-align">
<div class="vertical-content margin">
<p>
Executing the test suite file from previous example, we get the meat and bone of Robot Framework: A comprehensive debriefing on what happened in the test execution in two parts: the <span class="bold"> Report</span> and the <span class="bold">Log</span>.
</p>
<p>This Report and Log are based on executing the test suite described in the previous example and is from our <a href="https://bitbucket.org/robotframework/webdemo" target="_blank">web demo project</a>.</p>
<img src="img/examples/report.png" id="report" />
<p id="example-report-last-paragraph">
Report details clearly viewable statistics including Pass/Fail ratios and elapsed times. This gives you great overview on the test execution.
</p>
</div>
</div>
<div class="column half vertical-align">
<div class="vertical-content margin">
<img src="img/examples/log.png" id="log" />
<p class="justify">
Log details statistics from each step of the test execution, from keyword to keyword. It enables you to drill down on the specifics of the test in case of failure or otherwise.
</p>
</div>
</div>
</div>
<div class="item cf">
<div class="column half vertical-align">
<div class="caption margin vertical-content">
<p>
Keywords can be defined outside of the test suite and be imported as an external resources. This means you can collect generally useful keywords to one place and share them throughout your project, keeping also the testing <a href="http://en.wikipedia.org/wiki/Don't_repeat_yourself" class="bold" target="_blank">DRY</a>!
</p>
<p>
Below, we have test case testing invalid login in <a href="https://bitbucket.org/robotframework/webdemo">our very own web demo</a>. As you can see, we can abstract away a lot of necessary, but ultimately non-expressive nuts and bolts of the testing to the <span class="italic">resource file</span>.
</p>
<div class="highlight"><pre><span class="gh">*** Settings ***</span><span class="p"></span>
<span class="kn">Suite Setup</span><span class="p"> </span><span class="nf">Open Browser To Login Page</span><span class="p"></span>
<span class="kn">Suite Teardown</span><span class="p"> </span><span class="nf">Close Browser</span><span class="p"></span>
<span class="kn">Test Setup</span><span class="p"> </span><span class="nf">Go To Login Page</span><span class="p"></span>
<span class="kn">Test Template</span><span class="p"> </span><span class="nf">Login With Invalid Credentials Should Fail</span><span class="p"></span>
<span class="kn">Resource</span><span class="p"> </span><span class="nn">resource.txt</span><span class="p"></span>
<span class="gh">*** Test Cases ***</span><span class="p"> </span><span class="gh">User Name</span><span class="p"> </span><span class="gh">Password</span><span class="p"></span>
<span class="gu">Invalid Username</span><span class="p"> </span><span class="s">invalid</span><span class="p"> ${</span><span class="nv">VALID PASSWORD</span><span class="p">}</span>
<span class="gu">Invalid Password</span><span class="p"> ${</span><span class="nv">VALID USER</span><span class="p">} </span><span class="s">invalid</span><span class="p"></span>
<span class="gu">Invalid Username And Password</span><span class="p"> </span><span class="s">invalid</span><span class="p"> </span><span class="s">whatever</span><span class="p"></span>
<span class="gu">Empty Username</span><span class="p"> ${</span><span class="nv">EMPTY</span><span class="p">} ${</span><span class="nv">VALID PASSWORD</span><span class="p">}</span>
<span class="gu">Empty Password</span><span class="p"> ${</span><span class="nv">VALID USER</span><span class="p">} ${</span><span class="nv">EMPTY</span><span class="p">}</span>
<span class="gu">Empty Username And Password</span><span class="p"> ${</span><span class="nv">EMPTY</span><span class="p">} ${</span><span class="nv">EMPTY</span><span class="p">}</span>
<span class="gh">*** Keywords ***</span><span class="p"></span>
<span class="gu">Login With Invalid Credentials Should Fail</span><span class="p"></span>
<span class="p"> [</span><span class="kn">Arguments</span><span class="p">] ${</span><span class="nv">username</span><span class="p">} ${</span><span class="nv">password</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Input Username</span><span class="p"> ${</span><span class="nv">username</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Input Password</span><span class="p"> ${</span><span class="nv">password</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Submit Credentials</span><span class="p"></span>
<span class="p"> </span><span class="nf">Login Should Have Failed</span><span class="p"></span>
<span class="gu">Login Should Have Failed</span><span class="p"></span>
<span class="p"> </span><span class="nf">Location Should Be</span><span class="p"> ${</span><span class="nv">ERROR URL</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Title Should Be</span><span class="p"> </span><span class="s">Error Page</span><span class="p"></span>
</pre></div>
</div>
</div>
<div class="column half">
<div class="highlight"><pre><span class="gh">*** Settings ***</span><span class="p"></span>
<span class="kn">Library</span><span class="p"> </span><span class="nn">Selenium2Library</span><span class="p"></span>
<span class="gh">*** Variables ***</span><span class="p"></span>
<span class="p">${</span><span class="nv">SERVER</span><span class="p">} </span><span class="s">localhost:7272</span><span class="p"></span>
<span class="p">${</span><span class="nv">BROWSER</span><span class="p">} </span><span class="s">Firefox</span><span class="p"></span>
<span class="p">${</span><span class="nv">DELAY</span><span class="p">} </span><span class="s">0</span><span class="p"></span>
<span class="p">${</span><span class="nv">VALID USER</span><span class="p">} </span><span class="s">demo</span><span class="p"></span>
<span class="p">${</span><span class="nv">VALID PASSWORD</span><span class="p">} </span><span class="s">mode</span><span class="p"></span>
<span class="p">${</span><span class="nv">LOGIN URL</span><span class="p">} </span><span class="s">http://</span><span class="p">${</span><span class="nv">SERVER</span><span class="p">}</span><span class="s">/</span><span class="p"></span>
<span class="p">${</span><span class="nv">WELCOME URL</span><span class="p">} </span><span class="s">http://</span><span class="p">${</span><span class="nv">SERVER</span><span class="p">}</span><span class="s">/welcome.html</span><span class="p"></span>
<span class="p">${</span><span class="nv">ERROR URL</span><span class="p">} </span><span class="s">http://</span><span class="p">${</span><span class="nv">SERVER</span><span class="p">}</span><span class="s">/error.html</span><span class="p"></span>
<span class="gh">*** Keywords ***</span><span class="p"></span>
<span class="gu">Open Browser To Login Page</span><span class="p"></span>
<span class="p"> </span><span class="nf">Open Browser</span><span class="p"> ${</span><span class="nv">LOGIN URL</span><span class="p">} ${</span><span class="nv">BROWSER</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Maximize Browser Window</span><span class="p"></span>
<span class="p"> </span><span class="nf">Set Selenium Speed</span><span class="p"> ${</span><span class="nv">DELAY</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Login Page Should Be Open</span><span class="p"></span>
<span class="gu">Login Page Should Be Open</span><span class="p"></span>
<span class="p"> </span><span class="nf">Title Should Be</span><span class="p"> </span><span class="s">Login Page</span><span class="p"></span>
<span class="gu">Go To Login Page</span><span class="p"></span>
<span class="p"> </span><span class="nf">Go To</span><span class="p"> ${</span><span class="nv">LOGIN URL</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Login Page Should Be Open</span><span class="p"></span>
<span class="gu">Input Username</span><span class="p"></span>
<span class="p"> [</span><span class="kn">Arguments</span><span class="p">] ${</span><span class="nv">username</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Input Text</span><span class="p"> </span><span class="s">username_field</span><span class="p"> ${</span><span class="nv">username</span><span class="p">}</span>
<span class="gu">Input Password</span><span class="p"></span>
<span class="p"> [</span><span class="kn">Arguments</span><span class="p">] ${</span><span class="nv">password</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Input Text</span><span class="p"> </span><span class="s">password_field</span><span class="p"> ${</span><span class="nv">password</span><span class="p">}</span>
<span class="gu">Submit Credentials</span><span class="p"></span>
<span class="p"> </span><span class="nf">Click Button</span><span class="p"> </span><span class="s">login_button</span><span class="p"></span>
<span class="gu">Welcome Page Should Be Open</span><span class="p"></span>
<span class="p"> </span><span class="nf">Location Should Be</span><span class="p"> ${</span><span class="nv">WELCOME URL</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Title Should Be</span><span class="p"> </span><span class="s">Welcome Page</span><span class="p"></span>
</pre></div>
</div>
</div>
<div class="item cf">
<div class="column half vertical-align">
<div class="vertical-content">
<div class="highlight"><pre><span class="kn">from</span> <span class="nn">calculator</span> <span class="kn">import</span> <span class="n">Calculator</span><span class="p">,</span> <span class="n">CalculationError</span>
<span class="k">class</span> <span class="nc">CalculatorLibrary</span><span class="p">(</span><span class="nb">object</span><span class="p">):</span>
<span class="k">def</span> <span class="nf">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_calc</span> <span class="o">=</span> <span class="n">Calculator</span><span class="p">()</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_result</span> <span class="o">=</span> <span class="s">''</span>
<span class="k">def</span> <span class="nf">push_button</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">button</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">_result</span> <span class="o">=</span> <span class="bp">self</span><span class="o">.</span><span class="n">_calc</span><span class="o">.</span><span class="n">push</span><span class="p">(</span><span class="n">button</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">push_buttons</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">buttons</span><span class="p">):</span>
<span class="k">for</span> <span class="n">button</span> <span class="ow">in</span> <span class="n">buttons</span><span class="o">.</span><span class="n">replace</span><span class="p">(</span><span class="s">' '</span><span class="p">,</span><span class="s">''</span><span class="p">):</span>
<span class="bp">self</span><span class="o">.</span><span class="n">push_button</span><span class="p">(</span><span class="n">button</span><span class="p">)</span>
<span class="k">def</span> <span class="nf">result_should_be</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">expected</span><span class="p">):</span>
<span class="k">if</span> <span class="bp">self</span><span class="o">.</span><span class="n">_result</span> <span class="o">!=</span> <span class="n">expected</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">AssertionError</span><span class="p">(</span><span class="s">'</span><span class="si">%s</span><span class="s"> != </span><span class="si">%s</span><span class="s">'</span> <span class="o">%</span> <span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_result</span><span class="p">,</span> <span class="n">expected</span><span class="p">))</span>
<span class="k">def</span> <span class="nf">should_fail</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">expression</span><span class="p">):</span>
<span class="k">try</span><span class="p">:</span>
<span class="bp">self</span><span class="o">.</span><span class="n">push_buttons</span><span class="p">(</span><span class="n">expression</span><span class="p">)</span>
<span class="k">except</span> <span class="n">CalculationError</span><span class="p">,</span> <span class="n">err</span><span class="p">:</span>
<span class="k">return</span> <span class="nb">str</span><span class="p">(</span><span class="n">err</span><span class="p">)</span>
<span class="k">else</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">AssertionError</span><span class="p">(</span><span class="s">"'</span><span class="si">%s</span><span class="s">' should have failed"</span> <span class="o">%</span> <span class="n">expression</span><span class="p">)</span>
</pre></div>
</div>
</div>
<div class="column half vertical-align">
<div class="caption vertical-content">
<p>
All keywords in Robot Framework come from some library. What if existing libraries do not have what you need? Easy! Just make a library of your own!
</p>
<p>
This example is from our <a href="https://bitbucket.org/robotframework/robotdemo" target="_blank">Robot Demo</a>. These keywords the tests use are implemented in plain Python. You can also do libraries in Java.
</p>
</div>
</div>
</div>
<div class="item cf">
<div class="column half vertical-align">
<div class="vertical-content">
<div class="highlight"><pre><span class="gh">*** Settings ***</span><span class="p"></span>
<span class="kn">Test Template</span><span class="p"> </span><span class="nf">Calculate</span><span class="p"></span>
<span class="kn">Library</span><span class="p"> </span><span class="nn">CalculatorLibrary</span><span class="p"></span>
<span class="gh">*** Test Cases ***</span><span class="p"> </span><span class="gh">Expression</span><span class="p"> </span><span class="gh">Expected</span><span class="p"></span>
<span class="gu">Additions</span><span class="p"> </span><span class="s">12 + 2 + 2</span><span class="p"> </span><span class="s">16</span><span class="p"></span>
<span class="p"> </span><span class="s">2 + -3</span><span class="p"> </span><span class="s">-1</span><span class="p"></span>
<span class="gu">Substractions</span><span class="p"> </span><span class="s">12 - 2 - 2</span><span class="p"> </span><span class="s">8</span><span class="p"></span>
<span class="p"> </span><span class="s">2 - -3</span><span class="p"> </span><span class="s">5</span><span class="p"></span>
<span class="gu">Multiplication</span><span class="p"> </span><span class="s">12 * 2 * 2</span><span class="p"> </span><span class="s">48</span><span class="p"></span>
<span class="p"> </span><span class="s">2 * -3</span><span class="p"> </span><span class="s">-6</span><span class="p"></span>
<span class="gu">Division</span><span class="p"> </span><span class="s">12 / 2 / 2</span><span class="p"> </span><span class="s">3</span><span class="p"></span>
<span class="p"> </span><span class="s">2 / -3</span><span class="p"> </span><span class="s">-1</span><span class="p"></span>
<span class="gu">Calculation error</span><span class="p"> [</span><span class="kn">Template</span><span class="p">] </span><span class="nf">Calculation should fail</span><span class="p"></span>
<span class="p"> </span><span class="s">kekkonen</span><span class="p"> </span><span class="s">Invalid button 'k'.</span><span class="p"></span>
<span class="p"> ${</span><span class="nv">EMPTY</span><span class="p">} </span><span class="s">Invalid expression.</span><span class="p"></span>
<span class="p"> </span><span class="s">1 / 0</span><span class="p"> </span><span class="s">Division by zero.</span><span class="p"></span>
<span class="gh">*** Keywords ***</span><span class="p"></span>
<span class="gu">Calculate</span><span class="p"></span>
<span class="p"> [</span><span class="kn">Arguments</span><span class="p">] ${</span><span class="nv">expression</span><span class="p">} ${</span><span class="nv">expected</span><span class="p">}</span>
<span class="p"> </span><span class="nf">Push buttons</span><span class="p"> </span><span class="s">C</span><span class="p">${</span><span class="nv">expression</span><span class="p">}</span><span class="s">=</span><span class="p"></span>
<span class="p"> </span><span class="nf">Result should be</span><span class="p"> ${</span><span class="nv">expected</span><span class="p">}</span>
<span class="gu">Calculation should fail</span><span class="p"></span>
<span class="p"> [</span><span class="kn">Arguments</span><span class="p">] ${</span><span class="nv">expression</span><span class="p">} ${</span><span class="nv">expected</span><span class="p">}</span>
<span class="p"> ${</span><span class="nv">error</span><span class="p">} = </span><span class="nf">Should fail</span><span class="p"> </span><span class="s">C</span><span class="p">${</span><span class="nv">expression</span><span class="p">}</span><span class="s">=</span><span class="p"></span>
<span class="p"> </span><span class="nf">Should be equal</span><span class="p"> ${</span><span class="nv">expected</span><span class="p">} ${</span><span class="nv">error</span><span class="p">}</span>
</pre></div>
</div>
</div>
<div class="column half vertical-align">
<div class="caption vertical-content">
<p>
<span class="bold"><a href="http://en.wikipedia.org/wiki/Data-driven_testing" target="_blank">Data-driven test development</a></span> is easy due to you being able to define templates for your tests.
</p>
<p>
In this example, each test case adheres to the template set by <span class="teletype">Calculate</span> keyword.
</p>
<p>
This example comes from <a href="https://bitbucket.org/robotframework/robotdemo" target="_blank">our another demo</a> displaying testing a simple calculator. Check it out!
</p>
</div>
</div>
</div>
<div class="item cf">
<div class="column half vertical-align">
<div class="vertical-content">
<div class="highlight"><pre><span class="gh">*** Settings ***</span><span class="p"></span>
<span class="kn">Library</span><span class="p"> </span><span class="nn">CalculatorLibrary</span><span class="p"></span>
<span class="gh">*** Test Cases ***</span><span class="p"></span>
<span class="gu">Addition</span><span class="p"></span>
<span class="p"> </span><span class="ge">Given </span><span class="nf">calculator has been cleared</span><span class="p"></span>
<span class="p"> </span><span class="ge">When </span><span class="nf">user types "1 + 1"</span><span class="p"></span>
<span class="p"> </span><span class="ge">and </span><span class="nf">user pushes equals</span><span class="p"></span>
<span class="p"> </span><span class="ge">Then </span><span class="nf">result is "2"</span><span class="p"></span>
<span class="gh">*** Keywords ***</span><span class="p"></span>
<span class="gu">Calculator has been cleared</span><span class="p"></span>
<span class="p"> </span><span class="nf">Push button</span><span class="p"> </span><span class="s">C</span><span class="p"></span>
<span class="gu">User types "</span><span class="p">${</span><span class="nv">expression</span><span class="p">}</span><span class="gu">"</span><span class="p"></span>
<span class="p"> </span><span class="nf">Push buttons</span><span class="p"> ${</span><span class="nv">expression</span><span class="p">}</span>
<span class="gu">User pushes equals</span><span class="p"></span>
<span class="p"> </span><span class="nf">Push button</span><span class="p"> </span><span class="s">=</span><span class="p"></span>
<span class="gu">Result is "</span><span class="p">${</span><span class="nv">result</span><span class="p">}</span><span class="gu">"</span><span class="p"></span>
<span class="p"> </span><span class="nf">Result should be</span><span class="p"> ${</span><span class="nv">result</span><span class="p">}</span>
</pre></div>
</div>
</div>
<div class="column half vertical-align">
<div class="caption vertical-content">
<p>
Want to do <a target="_blank" href="https://github.com/cucumber/cucumber/wiki/Gherkin">Gherkin-style</a> behaviour-driven test development made famous by <a href="http://cukes.info/" target="_blank">Cucumber</a>? No problem! That's baked in!
<p>
<p>
Here is another example from our <a href="https://bitbucket.org/robotframework/robotdemo" target="_blank">Robot Demo</a> that shows how you can level the expressiveness of Given-When-Then in Robot Framework.
</p>
</div>
</div>
</div>
</div>
<div id="carousel-balls"></div>
<a class="carousel-control left" href="#example-carousel" data-slide="prev"></a>
<a class="carousel-control right" href="#example-carousel" data-slide="next"></a>
</div>
</div>
</div>
<div class="row" id="libraries">
<div class="content-area">
<h1 class="row-header">THE LIBRARIES</h1>
<p>
Test libraries provide the actual testing capabilities to
Robot Framework by providing keywords. There are several standard libraries that are
bundled in with the framework, and galore of separately
developed external libraries that can be installed based on your
needs. Creating your own test libraries <a href="http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries" target="_blank">is a breeze</a>.
</p>
<p>
<a href="https://github.com/robotframework/robotframework.github.com" target="_blank">Let us know</a> if
there are useful libraries missing from the list.
</p>
<div class="links">
<a href="#libraries-standard" class="active">STANDARD</a>
<a href="#libraries-external">EXTERNAL</a>
<a href="#libraries-other">OTHER</a>
<div class="marker"></div>
</div>
<div id="libraries-standard" class="external-links active">
<div class="column one-thirds">
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">Builtin</a>
Provides a set of often needed generic keywords. Always automatically available without imports.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">Dialogs</a>
Provides means for pausing the test execution and getting input from users.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">Collections</a>
Provides a set of keywords for handling Python lists and dictionaries.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">OperatingSystem</a>
Enables various operating system related tasks to be performed in the system where Robot Framework is running.
</div>
<div class="link">
<a href="https://github.com/robotframework/RemoteInterface" target="_blank">Remote</a>
Special library acting as a proxy between Robot Framework and test libraries elsewhere. Actual test libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">Screenshot</a>
Provides keywords to capture screenshots of the desktop.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">String</a>
Library for generating, modifying and verifying strings.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">Telnet</a>
Makes it possible to connect to Telnet servers and execute commands on the opened connections.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">XML</a>
Library for generating, modifying and verifying XML files.
</div>
</div>
<div class="column half">
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">Process</a>
Library for running processes in the system. New in Robot Framework 2.8.
</div>
</div>
<div class="column half">
<div class="link">
<a href="http://robotframework.org/robotframework/#standard-libraries" target="_blank">DateTime</a>
Library for date and time conversions. New in Robot Framework 2.8.5.
</div>
</div>
</div>
<div id="libraries-external" class="external-links">
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/lovelysystems/robotframework-androidlibrary#readme" target="_blank">Android library</a>
Library for all your Android automation needs. It uses Calabash Android internally.
</div>
<div class="link">
<a href="https://github.com/luisxiaomai/robotframework-anywherelibrary" target="_blank">AnywhereLibrary</a>
Library for testing Single-Page Apps (SPA). Uses Selenium Webdriver and Appium internally.
</div>
<div class="link">
<a href="https://github.com/jollychang/robotframework-appiumlibrary" target="_blank">AppiumLibrary</a>
Library for Android- and iOS-testing. It uses Appium internally.
</div>
<div class="link">
<a href="https://github.com/bulkan/robotframework-archivelibrary" target="_blank">Archive library</a>
Library for handling zip- and tar-archives.
</div>
<div class="link">
<a href="http://code.google.com/p/robotframework-autoitlibrary/" target="_blank">AutoItLibrary</a>
Windows GUI testing library that uses AutoIt freeware tool as a driver.
</div>
<div class="link">
<a href="https://github.com/Hi-Fi/robotframework-dblibrary" target="_blank">Database Library (Java)</a>
Java-based library for database testing. Usable with Jython. Available also at <a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22robotframework-dblibrary%22" target="_blank">Maven central</a>.
</div>
<div class="link">
<a href="http://franz-see.github.com/Robotframework-Database-Library/" target="_blank">Database Library (Python)</a>
Python based library for database testing. Works with any Python interpreter, including Jython.
</div>
<div class="link">
<a href="https://github.com/bulkan/robotframework-difflibrary" target="_blank">Diff Library</a>
Library to diff two files together.
</div>
<div class="link">
<a href="https://pypi.python.org/pypi/robotframework-djangolibrary" target="_blank">Django Library</a>
Library for <a href="https://www.djangoproject.com/" target="_blank">Django</a>, a Python web framework.
</div>
<div class="link">
<a href="https://github.com/lcarbonn/robotframework-eclipselibrary/" target="_blank">Eclipse Library</a>
Library for testing Eclipse RCP applications using SWT widgets.
</div>
<div class="link">
<a href="https://pypi.python.org/pypi/robotframework-faker/" target="_blank">robotframework-faker</a>
Library for <a href="https://github.com/joke2k/faker" target="_blank">Faker</a>, a fake test data generator.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/kowalpy/Robot-Framework-FTP-Library" target="_blank">FTP library</a>
Library for testing and using FTP server with Robot Framework.
</div>
<div class="link">
<a href="https://github.com/peritus/robotframework-httplibrary/#readme" target="_blank">HTTP library (livetest)</a>
Library for HTTP level testing using livetest tool internally.
</div>
<div class="link">
<a href="https://github.com/bulkan/robotframework-requests/#readme" target="_blank">HTTP library (Requests)</a>
Library for HTTP level testing using Request internally.
</div>
<div class="link">
<a href="https://github.com/Hi-Fi/robotframework-httprequestlibrary#readme" target="_blank">HttpRequestLibrary (Java)</a>
Library for HTTP level testing using Apache HTTP client. Available also at <a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22robotframework-httprequestlibrary%22" target="_blank">Maven central</a>.
</div>
<div class="link">
<a href="https://github.com/lovelysystems/robotframework-ioslibrary#readme" target="_blank">iOS library</a>
Library for all your iOS automation needs. It uses Calabash iOS Server internally.
</div>
<div class="link">
<a href="https://github.com/eficode/robotframework-imagehorizonlibrary#readme" target="_blank">ImageHorizonLibrary</a>
Cross-platform, pure Python library for GUI automation based on image recognition.
</div>
<div class="link">
<a href="https://github.com/iPlantCollaborativeOpenSource/Robotframework-MongoDB-Library#readme" target="_blank">MongoDB library</a>
Library for interacting with MongoDB using pymongo.
</div>
<div class="link">
<a href="https://github.com/randomsync/robotframework-mqttlibrary#readme" target="_blank">MQTT library</a>
Library for testing MQTT brokers and applications.
</div>
<div class="link">
<a href="https://github.com/vkosuri/robotframework-ncclient" target="_blank">NcclientLibrary</a>
NETCONF protocol library based on
<a href="https://github.com/ncclient/ncclient" target="_blank">ncclient</a>
</div>
<div class="link">
<a href="https://github.com/robotframework/Rammbock#readme" target="_blank">Rammbock</a>
Generic network protocol test library that offers easy way to specify network packets and inspect the results of sent and received packets.
</div>
<div class="link">
<a href="https://github.com/rainmanwy/robotframework-SikuliLibrary#readme" target="_blank">SikuliLibrary</a>
Sikuli Robot Framework Library provide keywords to test UI through <a href="http://sikulix.com/" target="_blank">Sikulix</a>. This library supports Python 2.x and 3.x.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/robotframework/remoteswinglibrary" target="_blank">RemoteSwingLibrary</a>
Library for testing and connecting to a java process and using SwingLibrary, especially Java Web Start applications.
</div>
<div class="link">
<a href="http://github.com/robotframework/SeleniumLibrary/" target="_blank">SeleniumLibrary</a>
Web testing library that uses popular Selenium tool internally.
</div>
<div class="link">
<a href="https://github.com/robotframework/Selenium2Library" target="_blank">Selenium2Library</a>
Web testing library that uses Selenium 2. Library is deprecated;
users should upgrade to SeleniumLibrary described above.
</div>
<div class="link">
<a href="https://github.com/MarkusBernhardt/robotframework-selenium2library-java#readme" target="_blank">Selenium2Library for Java</a>
Java port of the Selenium2Library.
</div>
<div class="link">
<a href="https://github.com/rickypc/robotframework-extendedselenium2library" target="_blank">ExtendedSelenium2Library</a>
Web testing library that uses Selenium2Library internally, providing AngularJS support on top of it.
</div>
<div class="link">
<a href="https://github.com/robotframework/SSHLibrary" target="_blank">SSHLibrary</a>
Enables executing commands on remote machines over an SSH connection. Also supports transfering files using SFTP.
</div>
<div class="link">
<a href="https://github.com/ombre42/robotframework-sudslibrary#readme" target="_blank">SudsLibrary</a>
A library for functional testing of SOAP-based web services based on Suds, a dynamic SOAP 1.1 client.
</div>
<div class="link">
<a href="https://github.com/robotframework/SwingLibrary/wiki" target="_blank">SwingLibrary</a>
Library for testing Java applications with Swing GUI.
</div>
<div class="link">
<a href="https://github.com/kowalpy/Robot-Framework-TFTP-Library" target="_blank">TFTPLibrary</a>
Library for interacting over <a href="https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol" target="_blank">Trivial File Transfer Portocol</a>.
</div>
<div class="link">
<a href="https://github.com/semperos/watir-robot/#readme" target="_blank">watir-robot</a>
Web testing library that uses Watir tool.
</div>
</div>
</div>
<div id="libraries-other" class="external-links">
<div class="column half">
<div class="link">
<a href="http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries" target="_blank">Creating test libraries</a>
Creating test libraries section in Robot Framework User Guide.
</div>
<div class="link">
<a href="https://pypi.python.org/pypi/plone.app.robotframework" target="_blank">plone.app.robotframework</a>
Provides resources and tools for writing functional Selenium tests for Plone CMS and its add-ons.
</div>
</div>
<div class="column half">
<div class="link">
<a href="https://github.com/robotframework/JavalibCore/wiki" target="_blank">JavalibCore</a>
Base for implementing larger Java based test libraries for Robot Framework.
</div>
<div class="link">
<a href="https://github.com/robotframework/RemoteInterface" target="_blank">Remote</a>
Built-in special library acting as a proxy between Robot Framework and test libraries elsewhere. Actual test libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol.
</div>
</div>
<div class="column full">
<div class="link">
<a href="https://github.com/robotframework/RemoteApplications" target="_blank">RemoteApplications</a>
Special test library for launching Java applications on a separate JVM and taking other libraries into use on them.
</div>
</div>
</div>
</div>
</div>
<div class="row blue" id="tools">
<div class="content-area">
<h1 class="row-header">THE TOOLS</h1>
<p>
Supporting tools ease everything surrounding tests: editing, running, building and so
on. Most of these tools are developed as separate projects,
but some are built into the framework itself.
</p>
<p>
<a href="https://github.com/robotframework/robotframework.github.com" target="_blank">Let us know</a> if there are useful tools missing from the list.
</p>
<div class="links">
<a href="#tools-builtin" class="active">BUILT-IN</a>
<a href="#tools-editors">EDITORS</a>
<a href="#tools-build">BUILD</a>
<a href="#tools-other">OTHER</a>
<div class="marker"></div>
</div>
<div class="external-links active" id="tools-builtin">
<div class="column half">
<div class="link">
<a href="http://robotframework.org/robotframework/#built-in-tools" target="_blank">Rebot</a>
Tool for generating logs and reports based on XML outputs and for combining multiple outputs together.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#built-in-tools" target="_blank">Libdoc</a>
Tool for generating keyword documentation for test libraries and resource files.
</div>
</div>
<div class="column half">
<div class="link">
<a href="http://robotframework.org/robotframework/#built-in-tools" target="_blank">Testdoc</a>
Generates high level HTML documentation based on Robot Framework test cases.
</div>
<div class="link">
<a href="http://robotframework.org/robotframework/#built-in-tools" target="_blank">Tidy</a>
Tool for cleaning up and changing format of Robot Framework test data files.
</div>
</div>
</div>
<div class="external-links" id="tools-editors">
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/robotframework/RIDE/wiki" target="_blank">RIDE</a>
Standalone Robot Framework test data editor.
</div>
<div class="link">
<a href="https://atom.io/packages/language-robot-framework" target="_blank">Atom plugin</a>
Robot Framework plugin for Atom.
</div>
<div class="link">
<a href="https://github.com/boakley/brackets-robotframework/wiki" target="_blank">Brackets plugin</a>
Robot Framework plugin for Brackets.
</div>
<div class="link">
<a href="https://github.com/NitorCreations/RobotFramework-EclipseIDE/wiki" target="_blank">Eclipse plugin</a>
Robot Framework plugin for Eclipse IDE.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/sakari/robot-mode" target="_blank">Emacs major mode</a>
Emacs major mode for editing tests.
</div>
<div class="link">
<a href="https://github.com/vkosuri/gedit-robot" target="_blank">Gedit</a>
Syntax highlighting for Gedit.
</div>
<div class="link">
<a href="http://plugins.jetbrains.com/plugin/7430" target="_blank">Robot Plugin for IntelliJ IDEA</a>
For IntelliJ IDEA-based editors by JIVE Software.
</div>
<div class="link">
<a href="http://plugins.jetbrains.com/plugin/7415" target="_blank">Robot Support for IntelliJ IDEA</a>
For IntelliJ IDEA-based editors by Valerio Angelini.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="https://bitbucket.org/jussimalinen/robot.tmbundle/" target="_blank">TextMate bundle</a>
Bundle for TextMate adding syntax highlighting.
</div>
<div class="link">
<a href="https://github.com/andriyko/sublime-robot-framework-assistant" target="_blank">Sublime assistant</a>
A plugin for Sublime Text 2 & 3 by Andriy Hrytskiv.
</div>
<div class="link">
<a href="https://github.com/shellderp/sublime-robot-plugin" target="_blank">Sublime plugin</a>
A plugin for Sublime Text 2 by Mike Gershunovsky.
</div>
<div class="link">
<a href="https://github.com/mfukar/robotframework-vim" target="_blank">Vim plugin</a>
Vim plugin for development with Robot Framework.
</div>
</div>
<div class="column half">
<div class="link">
<a href="https://github.com/vkosuri/lang-robot" target="_blank">Notepad++</a>
Syntax highlighting for Notepad++.
</div>
</div>
<div class="column half">
<div class="link">
<a href="https://github.com/nokia/RED" target="_blank">RED</a>
Eclipse based editor with a debugger by Nokia.
</div>
</div>
</div>
<div class="external-links" id="tools-build">
<div class="column one-thirds">
<div class="link">
<a href="https://wiki.jenkins-ci.org/display/JENKINS/Robot+Framework+Plugin" target="_blank">Jenkins plugin</a>
Plugin to collect and publish Robot Framework test results in Jenkins.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="http://robotframework.github.com/MavenPlugin/" target="_blank">Maven plugin</a>
Maven plugin for using Robot Framework.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="http://code.google.com/p/robotframework-ant/" target="_blank">Ant task</a>
Ant task for running Robot Framework tests.
</div>
</div>
</div>
<div class="external-links" id="tools-other">
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/robotframework/DbBot" target="_blank">DbBot</a>
Tool for serializing Robot Framework test results, i.e. output.xml files, into a SQLite database. It serves a good starting point to create your own reporting and analyzing tools.
</div>
<div class="link">
<a href="https://bitbucket.org/robotframework/fixml" target="_blank">Fixml</a>
Tool for fixing Robot Framework output files that are broken.
</div>
<div class="link">
<a href="http://github.com/robotframework/mabot/" target="_blank">Mabot</a>
Tool for reporting manual tests in format compatible with Robot Framework outputs.
</div>
<div class="link">
<a href="https://www.nrl.navy.mil/itd/imda/products/sage" target="_blank">SAGE Framework</a>
Multi-agent based extension to Robot Framework. Agent based systems make it possible to test distributed systems
such as Service Oriented Architecture systems. SAGE Provides a library of Robot Framework keywords for creating
and managing SAGE agent networks as well as collecting and reporting results from remote agents.
</div>
</div>
<div class="column one-thirds">
<div class="link">
<a href="https://github.com/mkorpela/pabot" target="_blank">Pabot</a>
A parallel executor for Robot Framework test cases.
</div>
<div class="link">