forked from josdoaitran/selenium-hybrid-framework-maven-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogfile.log
More file actions
2317 lines (2317 loc) · 194 KB
/
Copy pathlogfile.log
File metadata and controls
2317 lines (2317 loc) · 194 KB
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
2016-12-09 15:46:58,961 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:46:58,963 INFO [Log] ****************************************************************************************
2016-12-09 15:46:58,964 INFO [Log] ****************************************************************************************
2016-12-09 15:46:58,964 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 15:46:58,964 INFO [Log] ****************************************************************************************
2016-12-09 15:46:58,964 INFO [Log] ****************************************************************************************
2016-12-09 15:46:58,969 INFO [Log] *Try to Open Browser*
2016-12-09 15:47:09,408 INFO [Log] Opened Browser: Chrome
2016-12-09 15:47:09,971 INFO [Log] *Try to navigate to URL*
2016-12-09 15:47:21,652 INFO [Log] Navigated to BASE_URL
2016-12-09 15:47:21,912 INFO [Log] *Try to Click on WebElement*
2016-12-09 15:47:21,914 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 15:47:23,171 INFO [Log] *Try to close the browser*
2016-12-09 15:47:25,135 INFO [Log] *Closed the browser*
2016-12-09 15:47:25,321 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 15:47:25,321 INFO [Log] X
2016-12-09 15:47:25,321 INFO [Log] X
2016-12-09 15:47:25,321 INFO [Log] X
2016-12-09 15:47:25,321 INFO [Log] X
2016-12-09 15:47:25,322 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,322 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,322 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,322 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,323 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,324 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,324 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,324 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,324 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,325 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,325 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,325 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,325 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,325 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,325 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,326 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,326 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,326 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:47:25,326 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:11,344 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:11,345 INFO [Log] ****************************************************************************************
2016-12-09 15:50:11,345 INFO [Log] ****************************************************************************************
2016-12-09 15:50:11,345 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 15:50:11,345 INFO [Log] ****************************************************************************************
2016-12-09 15:50:11,345 INFO [Log] ****************************************************************************************
2016-12-09 15:50:11,346 INFO [Log] *Try to Open Browser*
2016-12-09 15:50:16,544 INFO [Log] Opened Browser: Chrome
2016-12-09 15:50:16,834 INFO [Log] *Try to navigate to URL*
2016-12-09 15:50:25,762 INFO [Log] Navigated to BASE_URL
2016-12-09 15:50:25,979 INFO [Log] *Try to Click on WebElement*
2016-12-09 15:50:25,980 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 15:50:26,564 INFO [Log] *Try to close the browser*
2016-12-09 15:50:28,348 INFO [Log] *Closed the browser*
2016-12-09 15:50:28,536 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 15:50:28,536 INFO [Log] X
2016-12-09 15:50:28,536 INFO [Log] X
2016-12-09 15:50:28,536 INFO [Log] X
2016-12-09 15:50:28,536 INFO [Log] X
2016-12-09 15:50:28,536 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,536 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,536 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,536 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,537 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,538 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,540 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:50:28,540 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:51:49,998 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:51:49,999 INFO [Log] ****************************************************************************************
2016-12-09 15:51:49,999 INFO [Log] ****************************************************************************************
2016-12-09 15:51:49,999 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 15:51:49,999 INFO [Log] ****************************************************************************************
2016-12-09 15:51:49,999 INFO [Log] ****************************************************************************************
2016-12-09 15:51:50,000 INFO [Log] *Try to Open Browser*
2016-12-09 15:51:54,637 INFO [Log] Opened Browser: Chrome
2016-12-09 15:51:54,969 INFO [Log] *Try to navigate to URL*
2016-12-09 15:52:02,772 INFO [Log] Navigated to BASE_URL
2016-12-09 15:52:03,014 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 15:52:03,577 INFO [Log] *Try to close the browser*
2016-12-09 15:52:06,513 INFO [Log] *Closed the browser*
2016-12-09 15:52:06,707 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 15:52:06,707 INFO [Log] X
2016-12-09 15:52:06,707 INFO [Log] X
2016-12-09 15:52:06,708 INFO [Log] X
2016-12-09 15:52:06,708 INFO [Log] X
2016-12-09 15:52:06,708 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,708 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,708 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,708 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,708 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,708 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,709 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,710 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 15:52:06,710 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:00:53,818 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:00:53,826 INFO [Log] ****************************************************************************************
2016-12-09 16:00:53,826 INFO [Log] ****************************************************************************************
2016-12-09 16:00:53,826 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 16:00:53,826 INFO [Log] ****************************************************************************************
2016-12-09 16:00:53,826 INFO [Log] ****************************************************************************************
2016-12-09 16:00:53,826 INFO [Log] *Try to Open Browser*
2016-12-09 16:01:00,917 INFO [Log] Opened Browser: Chrome
2016-12-09 16:01:01,719 INFO [Log] *Try to navigate to URL*
2016-12-09 16:01:11,512 INFO [Log] Navigated to BASE_URL
2016-12-09 16:01:11,695 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 16:01:12,221 INFO [Log] *Try to close the browser*
2016-12-09 16:01:13,651 INFO [Log] *Closed the browser*
2016-12-09 16:01:13,816 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 16:01:13,816 INFO [Log] X
2016-12-09 16:01:13,816 INFO [Log] X
2016-12-09 16:01:13,816 INFO [Log] X
2016-12-09 16:01:13,816 INFO [Log] X
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,816 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,832 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,832 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:01:13,832 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:02:59,165 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:02:59,165 INFO [Log] ****************************************************************************************
2016-12-09 16:02:59,165 INFO [Log] ****************************************************************************************
2016-12-09 16:02:59,165 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 16:02:59,165 INFO [Log] ****************************************************************************************
2016-12-09 16:02:59,165 INFO [Log] ****************************************************************************************
2016-12-09 16:02:59,165 INFO [Log] *Try to Open Browser*
2016-12-09 16:03:04,520 INFO [Log] Opened Browser: Chrome
2016-12-09 16:03:04,884 INFO [Log] *Try to navigate to URL*
2016-12-09 16:03:15,523 INFO [Log] Navigated to BASE_URL
2016-12-09 16:03:15,784 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 16:03:16,385 INFO [Log] *Try to close the browser*
2016-12-09 16:03:17,660 INFO [Log] *Closed the browser*
2016-12-09 16:03:17,826 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 16:03:17,826 INFO [Log] X
2016-12-09 16:03:17,826 INFO [Log] X
2016-12-09 16:03:17,826 INFO [Log] X
2016-12-09 16:03:17,826 INFO [Log] X
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 16:03:17,826 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:26,788 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:26,819 INFO [Log] ****************************************************************************************
2016-12-09 17:34:26,819 INFO [Log] ****************************************************************************************
2016-12-09 17:34:26,819 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 17:34:26,819 INFO [Log] ****************************************************************************************
2016-12-09 17:34:26,819 INFO [Log] ****************************************************************************************
2016-12-09 17:34:26,819 INFO [Log] *Try to Open Browser*
2016-12-09 17:34:33,414 INFO [Log] Opened Browser: Chrome
2016-12-09 17:34:33,827 INFO [Log] *Try to navigate to URL*
2016-12-09 17:34:48,394 INFO [Log] Navigated to BASE_URL
2016-12-09 17:34:48,599 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 17:34:49,326 INFO [Log] *Try to close the browser*
2016-12-09 17:34:50,693 INFO [Log] *Closed the browser*
2016-12-09 17:34:50,816 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 17:34:50,816 INFO [Log] X
2016-12-09 17:34:50,816 INFO [Log] X
2016-12-09 17:34:50,816 INFO [Log] X
2016-12-09 17:34:50,816 INFO [Log] X
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:34:50,831 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:35:50,430 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:35:50,430 INFO [Log] ****************************************************************************************
2016-12-09 17:35:50,430 INFO [Log] ****************************************************************************************
2016-12-09 17:35:50,430 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 17:35:50,430 INFO [Log] ****************************************************************************************
2016-12-09 17:35:50,430 INFO [Log] ****************************************************************************************
2016-12-09 17:35:50,430 INFO [Log] *Try to Open Browser*
2016-12-09 17:35:54,548 INFO [Log] Opened Browser: Chrome
2016-12-09 17:35:54,909 INFO [Log] *Try to navigate to URL*
2016-12-09 17:36:05,677 INFO [Log] Navigated to BASE_URL
2016-12-09 17:36:05,868 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 17:36:06,310 INFO [Log] *Try to close the browser*
2016-12-09 17:36:07,563 INFO [Log] *Closed the browser*
2016-12-09 17:36:07,752 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 17:36:07,752 INFO [Log] X
2016-12-09 17:36:07,752 INFO [Log] X
2016-12-09 17:36:07,752 INFO [Log] X
2016-12-09 17:36:07,752 INFO [Log] X
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,753 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,754 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,755 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,755 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,755 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,755 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,755 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:36:07,755 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:22,782 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:22,782 INFO [Log] ****************************************************************************************
2016-12-09 17:37:22,782 INFO [Log] ****************************************************************************************
2016-12-09 17:37:22,782 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 17:37:22,782 INFO [Log] ****************************************************************************************
2016-12-09 17:37:22,782 INFO [Log] ****************************************************************************************
2016-12-09 17:37:22,782 INFO [Log] *Try to Open Browser*
2016-12-09 17:37:26,655 INFO [Log] Opened Browser: Chrome
2016-12-09 17:37:26,955 INFO [Log] *Try to navigate to URL*
2016-12-09 17:37:37,423 INFO [Log] Navigated to BASE_URL
2016-12-09 17:37:37,589 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 17:37:37,981 INFO [Log] *Try to close the browser*
2016-12-09 17:37:39,363 INFO [Log] *Closed the browser*
2016-12-09 17:37:39,521 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 17:37:39,521 INFO [Log] X
2016-12-09 17:37:39,521 INFO [Log] X
2016-12-09 17:37:39,521 INFO [Log] X
2016-12-09 17:37:39,521 INFO [Log] X
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:37:39,521 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:39,088 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:39,089 INFO [Log] ****************************************************************************************
2016-12-09 17:39:39,089 INFO [Log] ****************************************************************************************
2016-12-09 17:39:39,089 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-09 17:39:39,089 INFO [Log] ****************************************************************************************
2016-12-09 17:39:39,089 INFO [Log] ****************************************************************************************
2016-12-09 17:39:39,090 INFO [Log] *Try to Open Browser*
2016-12-09 17:39:43,270 INFO [Log] Opened Browser: Chrome
2016-12-09 17:39:43,558 INFO [Log] *Try to navigate to URL*
2016-12-09 17:39:50,530 INFO [Log] Navigated to BASE_URL
2016-12-09 17:39:50,732 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-09 17:39:51,207 INFO [Log] *Try to close the browser*
2016-12-09 17:39:53,522 INFO [Log] *Closed the browser*
2016-12-09 17:39:53,680 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-09 17:39:53,680 INFO [Log] X
2016-12-09 17:39:53,680 INFO [Log] X
2016-12-09 17:39:53,680 INFO [Log] X
2016-12-09 17:39:53,680 INFO [Log] X
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-09 17:39:53,680 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:23:28,307 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:23:28,308 INFO [Log] ****************************************************************************************
2016-12-12 14:23:28,308 INFO [Log] ****************************************************************************************
2016-12-12 14:23:28,308 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 14:23:28,308 INFO [Log] ****************************************************************************************
2016-12-12 14:23:28,308 INFO [Log] ****************************************************************************************
2016-12-12 14:23:28,309 INFO [Log] *Try to Open Browser*
2016-12-12 14:23:40,660 INFO [Log] Opened Browser: Chrome
2016-12-12 14:23:41,026 INFO [Log] *Try to navigate to URL*
2016-12-12 14:23:56,159 INFO [Log] Navigated to BASE_URL
2016-12-12 14:23:56,503 INFO [Log] -------- Unable to click Element: TXT_STRATEGICDECISION --------null
2016-12-12 14:23:57,394 INFO [Log] *Try to close the browser*
2016-12-12 14:24:00,022 INFO [Log] *Closed the browser*
2016-12-12 14:24:00,193 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 14:24:00,193 INFO [Log] X
2016-12-12 14:24:00,193 INFO [Log] X
2016-12-12 14:24:00,193 INFO [Log] X
2016-12-12 14:24:00,193 INFO [Log] X
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,194 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,195 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,196 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,196 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:24:00,196 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:20,074 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:20,078 INFO [Log] ****************************************************************************************
2016-12-12 14:26:20,078 INFO [Log] ****************************************************************************************
2016-12-12 14:26:20,078 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 14:26:20,078 INFO [Log] ****************************************************************************************
2016-12-12 14:26:20,079 INFO [Log] ****************************************************************************************
2016-12-12 14:26:20,081 INFO [Log] *Try to Open Browser*
2016-12-12 14:26:25,558 INFO [Log] Opened Browser: Chrome
2016-12-12 14:26:25,919 INFO [Log] *Try to navigate to URL*
2016-12-12 14:26:37,138 INFO [Log] Navigated to BASE_URL
2016-12-12 14:26:37,463 INFO [Log] *Try to Click on WebElement*
2016-12-12 14:26:48,565 INFO [Log] Clicked on WebElement TXT_STRATEGICDECISION
2016-12-12 14:26:48,831 INFO [Log] *Try to navigate to back page*
2016-12-12 14:26:55,606 INFO [Log] Navigated to back page
2016-12-12 14:26:55,825 INFO [Log] *Try to Wait for element present*
2016-12-12 14:26:55,831 INFO [Log] -------- Element: TXT_LEADERSHIP is not presented --------null
2016-12-12 14:26:56,243 INFO [Log] *Try to close the browser*
2016-12-12 14:26:57,485 INFO [Log] *Closed the browser*
2016-12-12 14:26:57,630 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 14:26:57,630 INFO [Log] X
2016-12-12 14:26:57,630 INFO [Log] X
2016-12-12 14:26:57,630 INFO [Log] X
2016-12-12 14:26:57,630 INFO [Log] X
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,632 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,633 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,634 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,634 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:26:57,634 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:53:37,380 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:53:37,380 INFO [Log] ****************************************************************************************
2016-12-12 14:53:37,380 INFO [Log] ****************************************************************************************
2016-12-12 14:53:37,380 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 14:53:37,380 INFO [Log] ****************************************************************************************
2016-12-12 14:53:37,380 INFO [Log] ****************************************************************************************
2016-12-12 14:53:37,382 INFO [Log] *Try to Open Browser*
2016-12-12 14:53:42,490 INFO [Log] Opened Browser: Chrome
2016-12-12 14:53:42,868 INFO [Log] *Try to navigate to URL*
2016-12-12 14:53:54,081 INFO [Log] Navigated to BASE_URL
2016-12-12 14:53:54,317 INFO [Log] *Try to Click on WebElement*
2016-12-12 14:53:58,026 INFO [Log] Clicked on WebElement TXT_STRATEGICDECISION
2016-12-12 14:53:58,229 INFO [Log] *Try to navigate to back page*
2016-12-12 14:54:04,576 INFO [Log] Navigated to back page
2016-12-12 14:54:04,828 INFO [Log] *Try to Wait for element present*
2016-12-12 14:54:04,910 INFO [Log] Element: TXT_LEADERSHIP is presented.
2016-12-12 14:54:05,077 INFO [Log] *Try toVerify Element is existed*
2016-12-12 14:54:05,093 INFO [Log] Element: TXT_LEADERSHIP is existed
2016-12-12 14:54:05,293 INFO [Log] *Try to verify text between get from element and expected text*
2016-12-12 14:54:05,355 INFO [Log] Expected text on TXT_AGILETESTINGand actual text: Agile Testing and ATDD Automation â Free Tutorials are the same.
2016-12-12 14:54:05,456 INFO [Log] *Try to close the browser*
2016-12-12 14:54:06,821 INFO [Log] *Closed the browser*
2016-12-12 14:54:06,910 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:06,910 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:06,910 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:06,910 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,018 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 14:54:07,018 INFO [Log] X
2016-12-12 14:54:07,018 INFO [Log] X
2016-12-12 14:54:07,018 INFO [Log] X
2016-12-12 14:54:07,018 INFO [Log] X
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,019 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 14:54:07,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:31,573 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:31,574 INFO [Log] ****************************************************************************************
2016-12-12 15:11:31,574 INFO [Log] ****************************************************************************************
2016-12-12 15:11:31,574 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:11:31,574 INFO [Log] ****************************************************************************************
2016-12-12 15:11:31,574 INFO [Log] ****************************************************************************************
2016-12-12 15:11:31,575 INFO [Log] *Try to Open Browser*
2016-12-12 15:11:35,063 INFO [Log] Opened Browser: Chrome
2016-12-12 15:11:35,560 INFO [Log] *Try to navigate to URL*
2016-12-12 15:11:45,028 INFO [Log] Navigated to BASE_URL
2016-12-12 15:11:45,225 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:11:48,539 INFO [Log] Clicked on WebElement TXT_STRATEGICDECISION
2016-12-12 15:11:48,724 INFO [Log] *Try to navigate to back page*
2016-12-12 15:11:55,033 INFO [Log] Navigated to back page
2016-12-12 15:11:55,209 INFO [Log] *Try to Wait for element present*
2016-12-12 15:11:55,261 INFO [Log] Element: TXT_LEADERSHIP is presented.
2016-12-12 15:11:55,410 INFO [Log] *Try toVerify Element is existed*
2016-12-12 15:11:55,441 INFO [Log] Element: TXT_LEADERSHIP is existed
2016-12-12 15:11:55,597 INFO [Log] *Try to verify text between get from element and expected text*
2016-12-12 15:11:55,655 INFO [Log] Expected text on TXT_AGILETESTINGand actual text: Agile Testing and ATDD Automation â Free Tutorials are the same.
2016-12-12 15:11:55,787 INFO [Log] *Try to close the browser*
2016-12-12 15:11:57,067 INFO [Log] *Closed the browser*
2016-12-12 15:11:57,176 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:57,176 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:57,176 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:57,176 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:57,286 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:11:57,286 INFO [Log] X
2016-12-12 15:11:57,286 INFO [Log] X
2016-12-12 15:11:57,286 INFO [Log] X
2016-12-12 15:11:57,286 INFO [Log] X
2016-12-12 15:11:57,287 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:11:57,287 INFO [Log] ****************************************************************************************
2016-12-12 15:11:57,287 INFO [Log] ****************************************************************************************
2016-12-12 15:11:57,287 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase2 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:11:57,287 INFO [Log] ****************************************************************************************
2016-12-12 15:11:57,287 INFO [Log] ****************************************************************************************
2016-12-12 15:11:57,287 INFO [Log] *Try to Open Browser*
2016-12-12 15:12:10,473 INFO [Log] Opened Browser:
2016-12-12 15:12:10,648 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:12:18,153 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:12:18,234 INFO [Log] *Try to input value*
2016-12-12 15:12:18,698 INFO [Log] -------- Unable to input value: We will test with Tiếng Viá»t value and special key !@#$@#%@%# to element TXT_TEXTAREA --------null
2016-12-12 15:12:19,089 INFO [Log] *Try to close the browser*
2016-12-12 15:12:19,843 INFO [Log] *Closed the browser*
2016-12-12 15:12:19,938 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:12:19,938 INFO [Log] X
2016-12-12 15:12:19,938 INFO [Log] X
2016-12-12 15:12:19,938 INFO [Log] X
2016-12-12 15:12:19,938 INFO [Log] X
2016-12-12 15:12:19,940 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:12:19,940 INFO [Log] ****************************************************************************************
2016-12-12 15:12:19,940 INFO [Log] ****************************************************************************************
2016-12-12 15:12:19,940 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase3 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:12:19,940 INFO [Log] ****************************************************************************************
2016-12-12 15:12:19,940 INFO [Log] ****************************************************************************************
2016-12-12 15:12:19,942 INFO [Log] *Try to Open Browser*
2016-12-12 15:12:27,471 INFO [Log] Opened Browser: FF
2016-12-12 15:12:27,581 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:12:34,458 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:12:34,534 INFO [Log] *Try to input value*
2016-12-12 15:12:34,731 INFO [Log] -------- Unable to input value: doai.tran@seldatinc.com to element TXT_EMAIL --------null
2016-12-12 15:12:35,082 INFO [Log] *Try to close the browser*
2016-12-12 15:12:35,790 INFO [Log] *Closed the browser*
2016-12-12 15:12:35,867 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:12:35,867 INFO [Log] X
2016-12-12 15:12:35,867 INFO [Log] X
2016-12-12 15:12:35,867 INFO [Log] X
2016-12-12 15:12:35,867 INFO [Log] X
2016-12-12 15:12:35,867 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:12:35,867 INFO [Log] ****************************************************************************************
2016-12-12 15:12:35,867 INFO [Log] ****************************************************************************************
2016-12-12 15:12:35,867 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase4 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:12:35,867 INFO [Log] ****************************************************************************************
2016-12-12 15:12:35,867 INFO [Log] ****************************************************************************************
2016-12-12 15:12:35,867 INFO [Log] *Try to Open Browser*
2016-12-12 15:12:42,686 INFO [Log] Opened Browser: FF
2016-12-12 15:12:42,795 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:12:58,250 INFO [Log] Navigated to specify URL: http://toolsqa.wpengine.com/iframe-practice-page/
2016-12-12 15:12:58,338 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:13:03,338 INFO [Log] Waited for 5 seconds
2016-12-12 15:13:03,445 INFO [Log] *Try to switch to iFrame with name*
2016-12-12 15:13:03,627 INFO [Log] We are in iFrame with Name: iframe1
2016-12-12 15:13:03,699 INFO [Log] *Try to switch to Main Page layout*
2016-12-12 15:13:03,732 INFO [Log] We are in Main Page layout.
2016-12-12 15:13:03,800 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:13:08,800 INFO [Log] Waited for 5 seconds
2016-12-12 15:13:08,911 INFO [Log] *Try to switch to iFrame with iFrameID*
2016-12-12 15:13:18,955 INFO [Log] We are in iFrame with ID: IF1
2016-12-12 15:13:19,071 INFO [Log] *Try to switch to Main Page layout*
2016-12-12 15:13:19,221 INFO [Log] We are in Main Page layout.
2016-12-12 15:13:19,309 INFO [Log] *Try to close the browser*
2016-12-12 15:13:20,329 INFO [Log] *Closed the browser*
2016-12-12 15:13:20,369 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:20,369 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:20,369 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:20,369 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:20,462 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:13:20,463 INFO [Log] X
2016-12-12 15:13:20,463 INFO [Log] X
2016-12-12 15:13:20,463 INFO [Log] X
2016-12-12 15:13:20,463 INFO [Log] X
2016-12-12 15:13:20,463 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:20,463 INFO [Log] ****************************************************************************************
2016-12-12 15:13:20,463 INFO [Log] ****************************************************************************************
2016-12-12 15:13:20,463 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase5 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:13:20,463 INFO [Log] ****************************************************************************************
2016-12-12 15:13:20,463 INFO [Log] ****************************************************************************************
2016-12-12 15:13:20,463 INFO [Log] *Try to Open Browser*
2016-12-12 15:13:28,463 INFO [Log] Opened Browser: FF
2016-12-12 15:13:28,566 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:13:34,785 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:13:34,968 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:13:35,269 INFO [Log] Clicked on WebElement TEXT_DATE
2016-12-12 15:13:35,337 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:13:35,798 INFO [Log] Clicked on WebElement BTN_ADDMONTH
2016-12-12 15:13:35,855 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:13:36,229 INFO [Log] Clicked on WebElement BTN_ADDMONTH
2016-12-12 15:13:36,306 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:13:36,453 INFO [Log] Clicked on WebElement BTN_SWBMONTH
2016-12-12 15:13:36,516 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:13:36,667 INFO [Log] Clicked on WebElement TBL_DAY22
2016-12-12 15:13:36,733 INFO [Log] *Try to close the browser*
2016-12-12 15:13:37,518 INFO [Log] *Closed the browser*
2016-12-12 15:13:37,591 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:37,591 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:37,592 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:37,592 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:37,642 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:13:37,642 INFO [Log] X
2016-12-12 15:13:37,642 INFO [Log] X
2016-12-12 15:13:37,642 INFO [Log] X
2016-12-12 15:13:37,642 INFO [Log] X
2016-12-12 15:13:37,642 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:37,642 INFO [Log] ****************************************************************************************
2016-12-12 15:13:37,642 INFO [Log] ****************************************************************************************
2016-12-12 15:13:37,642 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase6 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:13:37,642 INFO [Log] ****************************************************************************************
2016-12-12 15:13:37,642 INFO [Log] ****************************************************************************************
2016-12-12 15:13:37,642 INFO [Log] *Try to Open Browser*
2016-12-12 15:13:44,244 INFO [Log] Opened Browser: FF
2016-12-12 15:13:44,361 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:13:51,463 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:13:51,535 INFO [Log] *Try to input value*
2016-12-12 15:13:51,705 INFO [Log] -------- Unable to input value: 11/23/2016 to element TEXT_DATE --------null
2016-12-12 15:13:52,116 INFO [Log] *Try to close the browser*
2016-12-12 15:13:52,843 INFO [Log] *Closed the browser*
2016-12-12 15:13:52,896 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:13:52,896 INFO [Log] X
2016-12-12 15:13:52,896 INFO [Log] X
2016-12-12 15:13:52,896 INFO [Log] X
2016-12-12 15:13:52,896 INFO [Log] X
2016-12-12 15:13:52,896 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:13:52,896 INFO [Log] ****************************************************************************************
2016-12-12 15:13:52,896 INFO [Log] ****************************************************************************************
2016-12-12 15:13:52,896 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase7 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:13:52,896 INFO [Log] ****************************************************************************************
2016-12-12 15:13:52,896 INFO [Log] ****************************************************************************************
2016-12-12 15:13:52,896 INFO [Log] *Try to Open Browser*
2016-12-12 15:13:59,843 INFO [Log] Opened Browser: FF
2016-12-12 15:13:59,920 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:14:04,076 INFO [Log] Navigated to specify URL: http://only-testing-blog.blogspot.in/2013/11/new-test.html
2016-12-12 15:14:04,139 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:14:09,140 INFO [Log] Waited for 5 seconds
2016-12-12 15:14:09,229 INFO [Log] *Try toVerify Element is existed*
2016-12-12 15:14:09,313 INFO [Log] Element: TBL_TESTTABLE is existed
2016-12-12 15:14:09,366 INFO [Log] *Try to verify Text In Table*
2016-12-12 15:14:09,611 INFO [Log] Value: 22 on table: TBL_TESTTABLE is existing.
2016-12-12 15:14:09,661 INFO [Log] *Try to close the browser*
2016-12-12 15:14:10,286 INFO [Log] *Closed the browser*
2016-12-12 15:14:10,396 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:10,397 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:10,397 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:10,397 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:10,469 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:14:10,469 INFO [Log] X
2016-12-12 15:14:10,469 INFO [Log] X
2016-12-12 15:14:10,469 INFO [Log] X
2016-12-12 15:14:10,469 INFO [Log] X
2016-12-12 15:14:10,469 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:10,469 INFO [Log] ****************************************************************************************
2016-12-12 15:14:10,469 INFO [Log] ****************************************************************************************
2016-12-12 15:14:10,469 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase8 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:14:10,469 INFO [Log] ****************************************************************************************
2016-12-12 15:14:10,469 INFO [Log] ****************************************************************************************
2016-12-12 15:14:10,469 INFO [Log] *Try to Open Browser*
2016-12-12 15:14:17,656 INFO [Log] Opened Browser: FF
2016-12-12 15:14:17,759 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:14:21,757 INFO [Log] Navigated to specify URL: http://only-testing-blog.blogspot.in/2014/02/attributes.html
2016-12-12 15:14:21,832 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:14:26,833 INFO [Log] Waited for 5 seconds
2016-12-12 15:14:26,924 INFO [Log] *Try to verify Checkbox Is Checked*
2016-12-12 15:14:27,007 INFO [Log] CheckBox: CHK_MILK is checked.
2016-12-12 15:14:27,060 INFO [Log] *Try to verify Checkbox Is Not Checked*
2016-12-12 15:14:27,121 INFO [Log] CheckBox: CHK_BUTTER is NOT checked.
2016-12-12 15:14:27,178 INFO [Log] *Try to verify Radio Is Not Checked*
2016-12-12 15:14:27,227 INFO [Log] Radio: RDB_MALE is NOT checked.
2016-12-12 15:14:27,286 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:14:27,501 INFO [Log] Clicked on WebElement RDB_MALE
2016-12-12 15:14:27,570 INFO [Log] *Try to verify Radio Is Checked*
2016-12-12 15:14:27,617 INFO [Log] Radio: RDB_MALE is checked.
2016-12-12 15:14:27,688 INFO [Log] *Try to verify Radio Is Not Checked*
2016-12-12 15:14:27,757 INFO [Log] Radio: RDB_FEMALE is NOT checked.
2016-12-12 15:14:27,834 INFO [Log] *Try to close the browser*
2016-12-12 15:14:28,547 INFO [Log] *Closed the browser*
2016-12-12 15:14:28,594 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:28,594 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:28,594 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:28,594 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:28,652 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:14:28,652 INFO [Log] X
2016-12-12 15:14:28,652 INFO [Log] X
2016-12-12 15:14:28,652 INFO [Log] X
2016-12-12 15:14:28,652 INFO [Log] X
2016-12-12 15:14:28,652 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:14:28,652 INFO [Log] ****************************************************************************************
2016-12-12 15:14:28,652 INFO [Log] ****************************************************************************************
2016-12-12 15:14:28,652 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase9 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:14:28,652 INFO [Log] ****************************************************************************************
2016-12-12 15:14:28,652 INFO [Log] ****************************************************************************************
2016-12-12 15:14:28,652 INFO [Log] *Try to Open Browser*
2016-12-12 15:14:35,637 INFO [Log] Opened Browser: FF
2016-12-12 15:14:35,717 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:16:23,414 INFO [Log] Navigated to specify URL: http://www.javascripttoolbox.com/lib/mktree/
2016-12-12 15:16:23,478 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:16:28,487 INFO [Log] Waited for 5 seconds
2016-12-12 15:16:28,552 INFO [Log] *Try to click TreeView Item*
2016-12-12 15:16:28,907 INFO [Log] Item config.txt is existed in TreeView: TREE_DEFAULT
2016-12-12 15:16:28,951 INFO [Log] *Try to verify TreeView Item Exist*
2016-12-12 15:16:29,207 INFO [Log] Item schedule.idis existed in tree view: TREE_DEFAULT
2016-12-12 15:16:29,262 INFO [Log] *Try to verify TreeView Item Not Exist*
2016-12-12 15:16:29,518 INFO [Log] Item AAAAAAAAAis existed in TreeView: TREE_DEFAULT
2016-12-12 15:16:29,566 INFO [Log] *Try to close the browser*
2016-12-12 15:16:30,206 INFO [Log] *Closed the browser*
2016-12-12 15:16:30,259 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,259 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,259 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,259 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,331 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:16:30,331 INFO [Log] X
2016-12-12 15:16:30,331 INFO [Log] X
2016-12-12 15:16:30,331 INFO [Log] X
2016-12-12 15:16:30,331 INFO [Log] X
2016-12-12 15:16:30,331 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,331 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,331 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,331 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,332 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,334 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,335 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:16:30,335 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:21:58,321 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:21:58,322 INFO [Log] ****************************************************************************************
2016-12-12 15:21:58,322 INFO [Log] ****************************************************************************************
2016-12-12 15:21:58,322 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase1 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:21:58,322 INFO [Log] ****************************************************************************************
2016-12-12 15:21:58,322 INFO [Log] ****************************************************************************************
2016-12-12 15:21:58,324 INFO [Log] *Try to Open Browser*
2016-12-12 15:22:03,620 INFO [Log] Opened Browser: Chrome
2016-12-12 15:22:03,987 INFO [Log] *Try to navigate to URL*
2016-12-12 15:22:14,341 INFO [Log] Navigated to BASE_URL
2016-12-12 15:22:14,525 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:22:18,020 INFO [Log] Clicked on WebElement TXT_STRATEGICDECISION
2016-12-12 15:22:18,206 INFO [Log] *Try to navigate to back page*
2016-12-12 15:22:24,739 INFO [Log] Navigated to back page
2016-12-12 15:22:24,912 INFO [Log] *Try to Wait for element present*
2016-12-12 15:22:24,973 INFO [Log] Element: TXT_LEADERSHIP is presented.
2016-12-12 15:22:25,102 INFO [Log] *Try toVerify Element is existed*
2016-12-12 15:22:25,114 INFO [Log] Element: TXT_LEADERSHIP is existed
2016-12-12 15:22:25,243 INFO [Log] *Try to verify text between get from element and expected text*
2016-12-12 15:22:25,293 INFO [Log] Expected text on TXT_AGILETESTINGand actual text: Agile Testing and ATDD Automation â Free Tutorials are the same.
2016-12-12 15:22:25,445 INFO [Log] *Try to close the browser*
2016-12-12 15:22:26,633 INFO [Log] *Closed the browser*
2016-12-12 15:22:26,732 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:26,732 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:26,732 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:26,732 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:26,842 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:22:26,842 INFO [Log] X
2016-12-12 15:22:26,842 INFO [Log] X
2016-12-12 15:22:26,842 INFO [Log] X
2016-12-12 15:22:26,842 INFO [Log] X
2016-12-12 15:22:26,842 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:26,842 INFO [Log] ****************************************************************************************
2016-12-12 15:22:26,842 INFO [Log] ****************************************************************************************
2016-12-12 15:22:26,842 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase2 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:22:26,842 INFO [Log] ****************************************************************************************
2016-12-12 15:22:26,842 INFO [Log] ****************************************************************************************
2016-12-12 15:22:26,843 INFO [Log] *Try to Open Browser*
2016-12-12 15:22:33,527 INFO [Log] Opened Browser:
2016-12-12 15:22:33,662 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:22:39,607 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:22:39,763 INFO [Log] *Try to input value*
2016-12-12 15:22:40,166 INFO [Log] Inputed value: We will test with Tiếng Viá»t value and special key !@#$@#%@%# to element TXT_TEXTAREA
2016-12-12 15:22:40,282 INFO [Log] *Try to input value*
2016-12-12 15:22:40,511 INFO [Log] Inputed value: ABCDEDF GHYUI IOPU to element TXT_BOX
2016-12-12 15:22:40,614 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:22:41,745 INFO [Log] Clicked on WebElement CHK_OPTION1
2016-12-12 15:22:41,821 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:22:42,036 INFO [Log] Clicked on WebElement LBL_OPTION1
2016-12-12 15:22:42,125 INFO [Log] *Try to select by visible text*
2016-12-12 15:22:42,389 INFO [Log] Selected LST_OPTION by visible text: Option 1
2016-12-12 15:22:42,495 INFO [Log] *Try to select by visible text*
2016-12-12 15:22:42,860 INFO [Log] Selected LST_OPTION by visible text: Option 2
2016-12-12 15:22:42,973 INFO [Log] *Try to close the browser*
2016-12-12 15:22:43,966 INFO [Log] *Closed the browser*
2016-12-12 15:22:44,042 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:44,042 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:44,042 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:44,042 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:44,121 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:22:44,122 INFO [Log] X
2016-12-12 15:22:44,122 INFO [Log] X
2016-12-12 15:22:44,122 INFO [Log] X
2016-12-12 15:22:44,122 INFO [Log] X
2016-12-12 15:22:44,122 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:22:44,122 INFO [Log] ****************************************************************************************
2016-12-12 15:22:44,122 INFO [Log] ****************************************************************************************
2016-12-12 15:22:44,122 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase3 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:22:44,122 INFO [Log] ****************************************************************************************
2016-12-12 15:22:44,122 INFO [Log] ****************************************************************************************
2016-12-12 15:22:44,122 INFO [Log] *Try to Open Browser*
2016-12-12 15:22:50,825 INFO [Log] Opened Browser: FF
2016-12-12 15:22:50,921 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:22:57,097 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:22:57,164 INFO [Log] *Try to input value*
2016-12-12 15:22:57,415 INFO [Log] Inputed value: doai.tran@seldatinc.com to element TXT_EMAIL
2016-12-12 15:22:57,497 INFO [Log] *Try to Wait for element present*
2016-12-12 15:22:58,130 INFO [Log] Element: WMB_TUTORIALS is presented.
2016-12-12 15:22:58,200 INFO [Log] *Try to hover to move To Element*
2016-12-12 15:22:58,391 INFO [Log] Hovered to move To Element: WMB_TUTORIALS
2016-12-12 15:22:58,502 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:22:58,674 INFO [Log] Clicked on WebElement WMB_TUTORIALS
2016-12-12 15:22:58,752 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:22:58,907 INFO [Log] Clicked on WebElement WMB_STRATEGICDECISION
2016-12-12 15:22:58,972 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:23:03,973 INFO [Log] Waited for 5 seconds
2016-12-12 15:23:04,053 INFO [Log] *Try to close the browser*
2016-12-12 15:23:05,022 INFO [Log] *Closed the browser*
2016-12-12 15:23:05,088 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:05,088 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:05,088 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:05,088 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:05,150 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:23:05,150 INFO [Log] X
2016-12-12 15:23:05,150 INFO [Log] X
2016-12-12 15:23:05,150 INFO [Log] X
2016-12-12 15:23:05,150 INFO [Log] X
2016-12-12 15:23:05,150 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:05,150 INFO [Log] ****************************************************************************************
2016-12-12 15:23:05,150 INFO [Log] ****************************************************************************************
2016-12-12 15:23:05,150 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase4 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:23:05,150 INFO [Log] ****************************************************************************************
2016-12-12 15:23:05,150 INFO [Log] ****************************************************************************************
2016-12-12 15:23:05,151 INFO [Log] *Try to Open Browser*
2016-12-12 15:23:11,575 INFO [Log] Opened Browser: FF
2016-12-12 15:23:11,642 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:23:26,402 INFO [Log] Navigated to specify URL: http://toolsqa.wpengine.com/iframe-practice-page/
2016-12-12 15:23:26,462 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:23:31,462 INFO [Log] Waited for 5 seconds
2016-12-12 15:23:31,559 INFO [Log] *Try to switch to iFrame with name*
2016-12-12 15:23:31,710 INFO [Log] We are in iFrame with Name: iframe1
2016-12-12 15:23:31,773 INFO [Log] *Try to switch to Main Page layout*
2016-12-12 15:23:31,799 INFO [Log] We are in Main Page layout.
2016-12-12 15:23:31,866 INFO [Log] *Try to wait for 5 seconds*
2016-12-12 15:23:36,866 INFO [Log] Waited for 5 seconds
2016-12-12 15:23:36,984 INFO [Log] *Try to switch to iFrame with iFrameID*
2016-12-12 15:23:47,018 INFO [Log] We are in iFrame with ID: IF1
2016-12-12 15:23:47,092 INFO [Log] *Try to switch to Main Page layout*
2016-12-12 15:23:47,115 INFO [Log] We are in Main Page layout.
2016-12-12 15:23:47,173 INFO [Log] *Try to close the browser*
2016-12-12 15:23:47,954 INFO [Log] *Closed the browser*
2016-12-12 15:23:48,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:48,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:48,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:48,020 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:48,085 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:23:48,086 INFO [Log] X
2016-12-12 15:23:48,086 INFO [Log] X
2016-12-12 15:23:48,086 INFO [Log] X
2016-12-12 15:23:48,086 INFO [Log] X
2016-12-12 15:23:48,086 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:23:48,086 INFO [Log] ****************************************************************************************
2016-12-12 15:23:48,086 INFO [Log] ****************************************************************************************
2016-12-12 15:23:48,086 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase5 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:23:48,086 INFO [Log] ****************************************************************************************
2016-12-12 15:23:48,086 INFO [Log] ****************************************************************************************
2016-12-12 15:23:48,086 INFO [Log] *Try to Open Browser*
2016-12-12 15:23:54,835 INFO [Log] Opened Browser: FF
2016-12-12 15:23:54,893 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:24:00,931 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:24:00,994 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:24:01,300 INFO [Log] Clicked on WebElement TEXT_DATE
2016-12-12 15:24:01,374 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:24:01,739 INFO [Log] Clicked on WebElement BTN_ADDMONTH
2016-12-12 15:24:01,802 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:24:02,149 INFO [Log] Clicked on WebElement BTN_ADDMONTH
2016-12-12 15:24:02,204 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:24:02,367 INFO [Log] Clicked on WebElement BTN_SWBMONTH
2016-12-12 15:24:02,431 INFO [Log] *Try to Click on WebElement*
2016-12-12 15:24:02,564 INFO [Log] Clicked on WebElement TBL_DAY22
2016-12-12 15:24:02,626 INFO [Log] *Try to close the browser*
2016-12-12 15:24:03,340 INFO [Log] *Closed the browser*
2016-12-12 15:24:03,391 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:24:03,391 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:24:03,391 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:24:03,391 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:24:03,447 INFO [Log] XXXXXXXXXXXXXXXXXXXXXXX -E---N---D- XXXXXXXXXXXXXXXXXXXXXX
2016-12-12 15:24:03,447 INFO [Log] X
2016-12-12 15:24:03,447 INFO [Log] X
2016-12-12 15:24:03,447 INFO [Log] X
2016-12-12 15:24:03,447 INFO [Log] X
2016-12-12 15:24:03,447 ERROR [Log] Class ReadWriteExcel| Method getCellData | Exception desc: null
2016-12-12 15:24:03,447 INFO [Log] ****************************************************************************************
2016-12-12 15:24:03,447 INFO [Log] ****************************************************************************************
2016-12-12 15:24:03,447 INFO [Log] $$$$$$$$$$$$$$$$$$$$$ TestCase6 $$$$$$$$$$$$$$$$$$$$$$$$$
2016-12-12 15:24:03,447 INFO [Log] ****************************************************************************************
2016-12-12 15:24:03,447 INFO [Log] ****************************************************************************************
2016-12-12 15:24:03,447 INFO [Log] *Try to Open Browser*
2016-12-12 15:24:09,859 INFO [Log] Opened Browser: FF
2016-12-12 15:24:09,978 INFO [Log] *Try to navigate to specify URL*
2016-12-12 15:24:15,717 INFO [Log] Navigated to specify URL: http://www.seleniumframework.com/Practiceform/
2016-12-12 15:24:15,777 INFO [Log] *Try to input value*
2016-12-12 15:24:16,780 INFO [Log] Inputed value: 11/23/2016 to element TEXT_DATE
2016-12-12 15:24:16,835 INFO [Log] *Try to input value*
2016-12-12 15:24:17,880 INFO [Log] Inputed value: ybox.com to element TXT_URL
2016-12-12 15:24:17,937 INFO [Log] *Try to submit the button*
2016-12-12 15:24:18,046 INFO [Log] Submitted the button: TXT_URL
2016-12-12 15:24:18,114 INFO [Log] *Try to verify text between get from element and expected text*
2016-12-12 15:24:18,211 INFO [Log] Expected text on TEXT_URLERRORand actual text: Please enter a valid URL. are the same.
2016-12-12 15:24:18,275 INFO [Log] *Try to input value*
2016-12-12 15:24:18,629 INFO [Log] Inputed value: http://www.seleniumframework.com to element TXT_URL
2016-12-12 15:24:18,690 INFO [Log] *Try to close the browser*
2016-12-12 15:24:19,375 INFO [Log] *Closed the browser*