-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
3021 lines (2546 loc) · 164 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>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0" />
<title>Record/Replay</title>
<link href="css/semantic.min.css" rel="stylesheet" type="text/css" />
<link href="css/userInterface.css" rel="stylesheet" type="text/css" />
<link href="css/codemirror.css" rel="stylesheet" type="text/css" />
<link href="css/darcula.css" rel="stylesheet" type="text/css" />
<script src="third_party/jquery-3.1.1.min.js"></script>
<script src="third_party/dexie.min.js"></script>
<script src="third_party/Rx.min.js"></script>
<script src="third_party/semantic.min.js"></script>
<script src="third_party/fontawesome-all.min.js"></script>
<script src="third_party/Chart.min.js"></script>
<script src="third_party/resemble.min.js"></script>
<script src="third_party/codemirror.min.js"></script>
<script src="third_party/codemirrorJavascript.min.js"></script>
<script src="utils/storage.js"></script>
<script src="utils/keyCodeDictionary.js"></script>
<script src="utils/recordReplayMessenger.js"></script>
<script src="utils/javascriptTranslator.js"></script>
<script src="utils/jqueryTranslator.js"></script>
<script src="utils/puppeteerTranslator.js"></script>
<script src="utils/jestTranslator.js"></script>
<script src="utils/seleniumTranslator.js"></script>
<script src="utils/cypressTranslator.js"></script>
<script src="utils/testingLibraryTranslator.js"></script>
<script src="utils/nodeBuilder.js"></script>
<script src="utils/pagination.js"></script>
<script src="utils/mobileDeviceDictionary.js"></script>
<script src="models/projectModel.js"></script>
<script src="models/testModel.js"></script>
<script src="models/recordingModel.js"></script>
<script src="models/recordingEventModel.js"></script>
<script src="models/assertionModel.js"></script>
<script src="models/replayModel.js"></script>
<script src="models/replayEventModel.js"></script>
<script src="user_interface/horizontalMenu.js"></script>
<script src="user_interface/verticalMenu.js"></script>
<script src="user_interface/projects.js"></script>
<script src="user_interface/newProject.js"></script>
<script src="user_interface/tests.js"></script>
<script src="user_interface/newTest.js"></script>
<script src="user_interface/recordings.js"></script>
<script src="user_interface/newRecording.js"></script>
<script src="user_interface/replays.js"></script>
<script src="user_interface/newReplay.js"></script>
<script src="user_interface/bulkReplay.js"></script>
<script src="user_interface/importExport.js"></script>
<script src="user_interface/analytics.js"></script>
<!-- FOR RECORDING AND REPLAYING EVENT TESTING ONLY -->
<!--
<script src="recordingScripts/cssSelectorGenerator.js"></script>
<script src="recordingScripts/dompath.js"></script>
<script src="recordingScripts/optimal-select.min.js"></script>
<script src="recordingScripts/recordReplaySelectorGenerator.js"></script>
<script src="recordingScripts/eventsRecorder.js"></script>
-->
</head>
<body>
<!-- HORIZONTAL MENU -->
<div class="mainSection" style="min-height: 100vh; background: #fff">
<div class="ui fluid center aligned container">
<div class="ui compact horizontal menu">
<div class="link item">
<i class="fas fa-robot" style="color: #6435c9"></i>
</div>
<a class="themeSettings item">
<strong>THEME</strong>
</a>
<a class="emailIcon item">
<strong>MAIL</strong>
</a>
<a class="giveIcon item" target="_blank" href="https://www.paypal.me/turbobrowser">
<strong>DONATE</strong>
</a>
</div>
</div>
<div class="ui flowing popup hidden">
<div class="ui one column grid">
<div class="column">
<h4 class="ui header">
<i class="github icon"></i>
<div class="content">GitHub</div>
</h4>
<p>Record/Replay is an open source project</p>
<p>Dedicated to Javascript automation testing</p>
<p>Powered by voluntary contributions</p>
<a target="_blank" href="https://github.com/tomgallagher/RecordReplay"
>Check us out on Github</a
>
</div>
</div>
</div>
<div
class="ui center aligned block header"
style="
font-style: italic;
background-color: rgba(0, 0, 0, 0.05);
box-shadow: rgb(100, 53, 201) 0px 0px 0px 2px inset;
font-size: 2.5rem;
"
>
<div class="defaultProject content">Default Project</div>
<div class="content">Record/Replay</div>
<div class="defaultTest content">Default Test</div>
</div>
<!-- VERTICAL MENU -->
<div class="ui padded stackable grid">
<div class="three wide column">
<div class="ui vertical fluid violet tabular menu">
<a id="testID" class="active gettingStarted item">
<strong>Getting Started</strong>
</a>
<a class="savedProjects disabled item">
<strong>Projects</strong>
</a>
<a class="newProject item">
<strong>New Project</strong>
</a>
<a class="savedTests disabled item">
<strong>Tests</strong>
</a>
<a class="newTest disabled item">
<strong>New Test</strong>
</a>
<a class="savedRecordings disabled item">
<strong>Recordings</strong>
</a>
<a class="newRecording disabled item">
<strong>New Recording</strong>
</a>
<a class="savedReplays disabled item">
<strong>Replays</strong>
</a>
<a class="newReplay disabled item">
<strong>New Replay</strong>
</a>
<a class="bulkReplay disabled item">
<strong>Bulk Replay</strong>
</a>
<a class="file item">
<strong>Import / Export</strong>
</a>
<a class="help item">
<strong>Tips and Tricks</strong>
</a>
</div>
</div>
<div class="thirteen wide stretched column">
<!-- GETTING STARTED -->
<div class="ui gettingStarted verticalTabMenu segment" style="display: block">
<div class="ui four steps">
<div class="step">
<i class="folder icon" style="color: #6435c9"></i>
<div class="content">
<div class="title">Projects</div>
<div class="description">Manage your testing workflow in project folders</div>
</div>
</div>
<div class="step">
<i class="tasks icon" style="color: #6435c9"></i>
<div class="content">
<div class="title">Tests</div>
<div class="description">Target single start pages with testing parameters</div>
</div>
</div>
<div class="step">
<i class="video icon" style="color: #6435c9"></i>
<div class="content">
<div class="title">Recording</div>
<div class="description">Save repeatable steps through user interaction</div>
</div>
</div>
<div class="step">
<i class="play icon" style="color: #6435c9"></i>
<div class="content">
<div class="title">Replaying</div>
<div class="description">See our automated tab walk through your tests</div>
</div>
</div>
</div>
<div class="ui segment">
<div class="ui tiny header">
<i class="folder open outline icon" style="color: #6435c9"></i>
<div class="content">Create your first project</div>
</div>
<div class="ui small relaxed animated divided list">
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Organising your testing workflow into projects allows for
<strong>better organisation</strong> of saved recordings and replays
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Project workflow allows for <strong>easy sharing </strong> of testing
environments among large teams
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Once you have completed input to <strong>save your first project</strong>, you
can start adding new tests
</div>
</div>
</div>
</div>
<div class="ui segment">
<div class="ui tiny header">
<i class="tasks icon" style="color: #6435c9"></i>
<div class="content">Set up your first test</div>
</div>
<div class="ui small relaxed animated divided list">
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Tests are linked to a <strong>single starting url</strong> and can contain many
recordings and replays
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Tests allow <strong>bandwidth and latency throttling</strong>, as well as taking
screenshots and reporting visual changes
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Once you have completed input to <strong>save your first test</strong>, you can
start adding new recordings
</div>
</div>
</div>
</div>
<div class="ui segment">
<div class="ui tiny header">
<i class="circle outline icon" style="color: #6435c9"></i>
<div class="content">Start your first recording</div>
</div>
<div class="ui small relaxed animated divided list">
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Recordings capture and save all user <strong>mouse and keyboard</strong> actions
in the testing browser window until stopped
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
You can flip between the Record/Replay tab and the test target tab to see your
actions being <strong>recorded in real time</strong>
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
Unwanted recordings events can be removed via the
<strong>table interface</strong>, with final output saved to local storage for
later replay
</div>
</div>
</div>
</div>
<div class="ui segment">
<div class="ui tiny header">
<i class="play circle outline icon" style="color: #6435c9"></i>
<div class="content">Replay your first recording</div>
</div>
<div class="ui small relaxed animated divided list">
<div class="item">
<i class="angle right icon"></i>
<div class="content">
To create your first replay, select a previous recording from menu,
<strong>add the assertions</strong> you want performed, then hit start
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
The replay reports to the Record/Replay tab, so you can see your tests
progressing with <strong>identical time intervals</strong> as the recording.
</div>
</div>
<div class="item">
<i class="angle right icon"></i>
<div class="content">
If the replay matches your recording,
<strong>download your replay as Javascript code</strong> for inclusion in
testing suites
</div>
</div>
</div>
</div>
</div>
<!-- PROJECTS SEGMENT -->
<div class="ui savedProjects verticalTabMenu segment" style="display: none; overflow-x: auto">
<table class="ui violet celled striped single line four column projectsTable unstackable table">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Author</th>
<th>Created</th>
<th class="center aligned">Action</th>
<th class="center aligned">Default</th>
</tr>
</thead>
<tbody></tbody>
<tfoot class="full-width">
<tr class="paginationMenuRow" style="display: none">
<th colspan="16" class="paginationMenuHolder">
<div class="ui right floated pagination menu">
<a class="icon item">
<i class="left chevron icon"></i>
</a>
<a class="item">1</a>
<a class="item">2</a>
<a class="item">3</a>
<a class="item">4</a>
<a class="icon item">
<i class="right chevron icon"></i>
</a>
</div>
</th>
</tr>
<tr class="editProjectFooter" style="display: none">
<th colspan="16">
<form class="ui editProjectForm form">
<div class="field" style="display: none">
<input type="text" name="hiddenProjectId" />
</div>
<div class="field" style="display: none">
<input type="text" name="hiddenProjectCreated" />
</div>
<div class="required field">
<label>Project Name</label>
<input
type="text"
name="projectName"
placeholder="Please enter unique project name"
/>
</div>
<div class="required field">
<label>Project Description</label>
<input
type="text"
name="projectDescription"
placeholder="Add a description that helps to identify the project"
/>
</div>
<div class="required field">
<label>Project Author</label>
<input
type="text"
name="projectAuthor"
placeholder="Please add the owner of the project"
/>
</div>
<div class="ui violet inverted submit button">Edit Project</div>
<div class="ui error message"></div>
<div class="ui success message">
<div class="header">Project Edited</div>
<p>Edited Project Now Available For Tests</p>
</div>
</form>
</th>
</tr>
</tfoot>
</table>
</div>
<!-- NEW PROJECT SEGMENT -->
<div class="ui newProject verticalTabMenu segment" style="display: none; overflow-x: auto">
<form class="ui newProjectForm form">
<div class="newProjectForm required field">
<label>Project Name</label>
<input type="text" name="projectName" placeholder="Please enter unique project name" />
</div>
<div class="newProjectForm required field">
<label>Project Description</label>
<input
type="text"
name="projectDescription"
placeholder="Add a description that helps to identify the project"
/>
</div>
<div class="newProjectForm required field">
<label>Project Author</label>
<input
type="text"
name="projectAuthor"
placeholder="Please add the owner of the project"
/>
</div>
<div class="ui violet inverted submit button">Create Project</div>
<div class="ui error message"></div>
<div class="ui success message">
<div class="header">New Project Created</div>
<p>Project Now Available For Adding Tests</p>
</div>
</form>
</div>
<!-- TESTS SEGMENT -->
<div class="ui savedTests verticalTabMenu segment" style="display: none; overflow-x: auto">
<table class="ui violet celled striped small compact testsTable unstackable table">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Author</th>
<th>For Project</th>
<th>Start URL</th>
<th>Bandwidth</th>
<th>Latency</th>
<th>Additional Reporting</th>
<th>Created</th>
<th class="center aligned">Action</th>
</tr>
</thead>
<tbody></tbody>
<tfoot class="full-width">
<tr class="paginationMenuRow" style="display: none">
<th colspan="16" class="paginationMenuHolder">
<div class="ui right floated pagination menu">
<a class="icon item">
<i class="left chevron icon"></i>
</a>
<a class="item">1</a>
<a class="item">2</a>
<a class="item">3</a>
<a class="item">4</a>
<a class="icon item">
<i class="right chevron icon"></i>
</a>
</div>
</th>
</tr>
<tr class="editTestFooter" style="display: none">
<th colspan="16">
<form class="ui editTestForm form">
<div class="field" style="display: none">
<input type="text" name="hiddenTestId" />
</div>
<div class="field" style="display: none">
<input type="text" name="hiddenTestCreated" />
</div>
<div class="two fields">
<div class="required field">
<label>Test Name</label>
<input
type="text"
name="testName"
placeholder="Enter unique test name"
/>
</div>
<div class="field">
<label>Test Description</label>
<input
type="text"
name="testDescription"
placeholder="Add a description that describes the test"
/>
</div>
</div>
<div class="two fields">
<div class="required field">
<label>For Project</label>
<div class="ui fluid selection editTest project dropdown">
<input type="hidden" name="testProjectId" />
<div class="default text">Select Project</div>
<i class="dropdown icon"></i>
<div class="menu"></div>
</div>
</div>
<div class="field">
<label>Test Author</label>
<input
type="text"
name="testAuthor"
placeholder="Add test designer name"
/>
</div>
</div>
<div class="required field">
<label>Start URL</label>
<input
type="text"
name="testStartUrl"
placeholder="Please add the full starting url of the test, including protocol"
/>
</div>
<div class="two fields">
<div class="required field">
<label>Bandwidth Throttling</label>
<div class="ui fluid selection bandwidth dropdown">
<input type="hidden" name="testBandwidthValue" />
<div class="default text">Select Desired Bandwidth</div>
<i class="dropdown icon"></i>
<div class="menu">
<div class="item" data-value="187500">1.5 Mbps</div>
<div class="item" data-value="375000">3 Mbps</div>
<div class="item" data-value="625000">5 Mbps</div>
<div class="item" data-value="875000">7 Mbps</div>
<div class="item" data-value="1250000">10 Mbps</div>
<div class="item" data-value="-1">None</div>
</div>
</div>
</div>
<div class="required field">
<label>Minimum Latency</label>
<div class="ui fluid selection latency dropdown">
<input type="hidden" name="testLatencyValue" />
<div class="default text">Select Desired Latency</div>
<i class="dropdown icon"></i>
<div class="menu">
<div class="item" data-value="0">None</div>
<div class="item" data-value="40">40ms</div>
<div class="item" data-value="50">50ms</div>
<div class="item" data-value="100">100ms</div>
<div class="item" data-value="150">150ms</div>
<div class="item" data-value="200">200ms</div>
<div class="item" data-value="300">300ms</div>
<div class="item" data-value="400">400ms</div>
<div class="item" data-value="500">500ms</div>
</div>
</div>
</div>
</div>
<div class="field">
<label>Additional Reporting</label>
<div class="four fields">
<div class="field">
<div class="ui performance checkbox">
<input
type="checkbox"
name="testPerformanceTimings"
class="hidden"
/>
<label>Report Performance Timings</label>
</div>
</div>
<div class="field">
<div class="ui resource checkbox">
<input
type="checkbox"
name="testResourceLoads"
class="hidden"
/>
<label>Report Resource Loads by Type</label>
</div>
</div>
<div class="field">
<div class="ui screenshot checkbox">
<input
type="checkbox"
name="testScreenShot"
class="hidden"
/>
<label>Take Screenshot When Finished</label>
</div>
</div>
<div class="field">
<div class="ui regression checkbox">
<input
type="checkbox"
name="testVisualRegression"
class="hidden"
/>
<label>Report Visual Changes</label>
</div>
</div>
</div>
</div>
<div class="ui violet inverted submit button">Edit Test</div>
<div class="ui error message"></div>
<div class="ui success message">
<div class="header">Test Edited</div>
<p>Edited Test Now Available For Recording</p>
</div>
</form>
</th>
</tr>
</tfoot>
</table>
</div>
<!-- NEW TEST SEGMENT -->
<div class="ui newTest verticalTabMenu segment" style="display: none">
<form class="ui newTestForm form">
<div class="two fields">
<div class="required field">
<label>Test Name</label>
<input type="text" name="testName" placeholder="Enter unique test name" />
</div>
<div class="field">
<label>Test Description</label>
<input
type="text"
name="testDescription"
placeholder="Add a description that describes the test"
/>
</div>
</div>
<div class="two fields">
<div class="required field">
<label>For Project</label>
<div class="ui fluid selection newTest project dropdown">
<input type="hidden" name="testProjectId" />
<div class="default text">Select Project</div>
<i class="dropdown icon"></i>
<div class="menu"></div>
</div>
</div>
<div class="field">
<label>Test Author</label>
<input type="text" name="testAuthor" placeholder="Add test designer name" />
</div>
</div>
<div class="required field">
<label>Start URL</label>
<input
type="text"
name="testStartUrl"
placeholder="Please add the full starting url of the test, including protocol"
/>
</div>
<div class="two fields">
<div class="required field">
<label>Bandwidth Throttling</label>
<div class="ui fluid selection bandwidth dropdown">
<input type="hidden" name="testBandwidthValue" />
<div class="default text">Select Desired Bandwidth</div>
<i class="dropdown icon"></i>
<div class="menu">
<div class="item" data-value="187500">1.5 Mbps</div>
<div class="item" data-value="375000">3 Mbps</div>
<div class="item" data-value="625000">5 Mbps</div>
<div class="item" data-value="875000">7 Mbps</div>
<div class="item" data-value="1250000">10 Mbps</div>
<div class="item" data-value="-1">None</div>
</div>
</div>
</div>
<div class="required field">
<label>Minimum Latency</label>
<div class="ui fluid selection latency dropdown">
<input type="hidden" name="testLatencyValue" />
<div class="default text">Select Desired Latency</div>
<i class="dropdown icon"></i>
<div class="menu">
<div class="item" data-value="0">None</div>
<div class="item" data-value="40">40ms</div>
<div class="item" data-value="50">50ms</div>
<div class="item" data-value="100">100ms</div>
<div class="item" data-value="150">150ms</div>
<div class="item" data-value="200">200ms</div>
<div class="item" data-value="300">300ms</div>
<div class="item" data-value="400">400ms</div>
<div class="item" data-value="500">500ms</div>
</div>
</div>
</div>
</div>
<div class="field">
<label>Additional Reporting</label>
<div class="four fields">
<div class="field">
<div class="ui performance checkbox">
<input type="checkbox" name="testPerformanceTimings" class="hidden" />
<label>Report Performance Timings</label>
</div>
</div>
<div class="field">
<div class="ui resource checkbox">
<input type="checkbox" name="testResourceLoads" class="hidden" />
<label>Report Resource Loads by Type</label>
</div>
</div>
<div class="field">
<div class="ui screenshot checkbox">
<input type="checkbox" name="testScreenshot" class="hidden" />
<label>Take Screenshot When Finished</label>
</div>
</div>
<div class="field">
<div class="ui regression checkbox">
<input type="checkbox" name="testVisualRegression" class="hidden" />
<label>Report Visual Changes</label>
</div>
</div>
</div>
</div>
<div class="ui violet inverted submit button">Create Test</div>
<div class="ui error message"></div>
<div class="ui success message">
<div class="header">New Test Created</div>
<p>Test Now Available For Recording</p>
</div>
</form>
</div>
<!-- RECORDINGS SEGMENT -->
<div class="ui savedRecordings verticalTabMenu segment" style="display: none; overflow-x: auto">
<table class="ui violet celled striped small compact recordingsTable unstackable table">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
<th>Author</th>
<th>For Project</th>
<th>For Test</th>
<th>Start URL</th>
<th>Device</th>
<th>Created</th>
<th class="center aligned">Action</th>
</tr>
</thead>
<tbody></tbody>
<tfoot class="full-width">
<tr class="paginationMenuRow" style="display: none">
<th colspan="16" class="paginationMenuHolder">
<div class="ui right floated pagination menu">
<a class="icon item">
<i class="left chevron icon"></i>
</a>
<a class="item">1</a>
<a class="item">2</a>
<a class="item">3</a>
<a class="item">4</a>
<a class="icon item">
<i class="right chevron icon"></i>
</a>
</div>
</th>
</tr>
<tr class="editRecordingFooter" style="display: none">
<th colspan="16">
<form class="ui editRecordingForm form">
<div class="three fields">
<div class="field" style="display: none">
<input type="text" name="hiddenRecordingId" />
</div>
<div class="required field">
<label>Recording Name</label>
<input
type="text"
name="recordingName"
placeholder="Enter unique recording name"
/>
</div>
<div class="field">
<label>Recording Description</label>
<input
type="text"
name="recordingDescription"
placeholder="Add a recording description"
/>
</div>
<div class="field">
<label>Recording Author</label>
<input
type="text"
name="recordingAuthor"
placeholder="Add an author"
/>
</div>
</div>
<div class="two fields">
<div class="required field">
<label>For Test</label>
<div class="ui fluid selection editRecording test dropdown">
<input type="hidden" name="recordingTestId" />
<div class="default text">Select Test</div>
<i class="dropdown icon"></i>
<div class="menu"></div>
</div>
</div>
<div class="required disabled field">
<label>Test Start Url</label>
<input
type="text"
name="recordingTestStartUrl"
placeholder="Filled on test select"
/>
</div>
</div>
<div class="fields">
<div class="four wide required four wide field">
<label>For Device</label>
<div class="inline fields">
<div class="field">
<div class="ui radio device checkbox">
<input
type="radio"
name="device"
checked="checked"
value="computer"
/>
<label>Computer</label>
</div>
</div>
<div class="field">