aboutsummaryrefslogtreecommitdiff
path: root/weechat/logs/irc.freenode.#watir.weechatlog
blob: 3ff709b2645f414cbcbe4714f5a5f5730e8f64a6 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2012-02-29 10:55:46	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-02-29 10:55:46	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu jarib jarm0 jibay KaZeR_W kdnewton Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-02-29 10:55:46	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-02-29 10:55:48	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-02-29 11:02:55	<--	KaZeR_W (~Z30@77.242.201.52) has quit (Remote host closed the connection)
2012-02-29 11:09:16	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-02-29 11:21:30	<--	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has quit (Quit: Ex-Chat)
2012-02-29 11:46:21	-->	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has joined #watir
2012-02-29 12:25:24	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-02-29 14:39:45	<--	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has quit (Remote host closed the connection)
2012-02-29 15:12:39	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-02-29 15:12:39	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 jibay Remco s0ber volter voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-02-29 15:12:39	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-02-29 15:12:42	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-02-29 15:13:22	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-02-29 15:13:22	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 jibay Remco s0ber volter voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-02-29 15:13:22	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-02-29 15:13:24	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-02-29 16:53:52	<--	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has quit (Ping timeout: 272 seconds)
2012-02-29 18:15:15	<--	jibay (~jibay@ANancy-155-1-53-227.w90-13.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-02-29 22:10:12		irc: disconnected from server
2012-02-29 22:10:36	-->	benbeltran (~benbeltra@187.146.47.127) has joined #watir
2012-02-29 22:10:36	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-02-29 22:10:36	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-02-29 22:10:38	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-02-29 23:07:17	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-03-01 00:07:26		irc: disconnected from server
2012-03-01 00:07:51	-->	benbeltran (~benbeltra@187.146.47.127) has joined #watir
2012-03-01 00:07:51	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 kdnewton Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-01 00:07:51	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-03-01 00:07:57	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-01 00:38:10	-->	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has joined #watir
2012-03-01 01:04:42	<--	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has quit (Ping timeout: 252 seconds)
2012-03-01 08:53:25		irc: disconnected from server
2012-03-01 08:53:40	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-01 08:53:40	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-01 08:53:40	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-01 08:53:42	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-01 09:30:01	<--	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has quit (Remote host closed the connection)
2012-03-01 09:31:59	-->	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has joined #watir
2012-03-01 10:45:22	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-01 11:11:26	-->	cheezy_ (~cheezy@107-0-236-210-ip-static.hfc.comcastbusiness.net) has joined #watir
2012-03-01 11:12:18	<--	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has quit (Read error: Connection reset by peer)
2012-03-01 11:12:25	-->	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has joined #watir
2012-03-01 11:16:19	<--	cheezy_ (~cheezy@107-0-236-210-ip-static.hfc.comcastbusiness.net) has quit (Ping timeout: 265 seconds)
2012-03-01 11:57:01	-->	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has joined #watir
2012-03-01 12:34:45	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-03-01 14:43:58	<--	djinni (~djinni@li125-242.members.linode.com) has quit (Quit: ERC Version 5.3 (IRC client for Emacs))
2012-03-01 14:45:01	<--	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has quit (Ping timeout: 276 seconds)
2012-03-01 14:45:52	-->	djinni (~djinni@li125-242.members.linode.com) has joined #watir
2012-03-01 15:59:49	-->	iamchrisf (~chrisferr@38.104.188.238) has joined #watir
2012-03-01 16:05:05	<--	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has quit (Remote host closed the connection)
2012-03-01 16:17:56	-->	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has joined #watir
2012-03-01 16:54:09	<--	cheezy (~cheezy@173-165-163-117-atlanta.hfc.comcastbusiness.net) has quit (Remote host closed the connection)
2012-03-01 19:08:37		irc: disconnected from server
2012-03-01 22:00:49	-->	benbeltran (~benbeltra@187.146.46.64) has joined #watir
2012-03-01 22:00:49	--	Nicks #watir: [benbeltran djinni fabrice31 fellu iamchrisf jarib jarm0 pongwon Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-01 22:00:49	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-01 22:00:49	--	Notice(holmes.freenode.net): [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-03-01 22:00:51	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-01 22:28:45	-->	kandala (~project@122.179.106.115) has joined #watir
2012-03-01 22:30:31	kandala	Hello all, I am using Watir with headless on a ubuntu server box. I have installed xvfb and when I run my script, I get an error saying "Could not find firefox binary (os=linux). Make sure firefox is installed or set the path manually". Do we actually need to install firefox on the server to run the Watir headless script ?
2012-03-01 22:51:54	<--	kandala (~project@122.179.106.115) has quit (Quit: Leaving.)
2012-03-01 23:45:29	zeljko	yes, you need to install firefox if you want to drive it :)
2012-03-01 23:47:39	<--	pongwon (~pongwon@99-170-40-41.lightspeed.tukrga.sbcglobal.net) has quit (Remote host closed the connection)
2012-03-02 01:04:46		irc: disconnected from server
2012-03-02 01:15:28	-->	benbeltran (~benbeltra@187.146.46.64) has joined #watir
2012-03-02 01:15:28	--	Nicks #watir: [benbeltran djinni fabrice31 fellu iamchrisf jarib jarm0 Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-02 01:15:28	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-03-02 01:15:30	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-02 09:23:54		irc: disconnected from server
2012-03-02 09:24:09	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-02 09:24:09	--	Nicks #watir: [benbeltran djinni fabrice31 fellu iamchrisf jarib jarm0 jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-02 09:24:09	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-02 09:24:11	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-02 09:37:16	<--	voodoofish (~voodoowin@adsl-108-95-54-238.dsl.lsan03.sbcglobal.net) has quit (Ping timeout: 272 seconds)
2012-03-02 10:12:01	-->	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has joined #watir
2012-03-02 11:17:55	<--	volter (~volker@85-127-220-232.dynamic.xdsl-line.inode.at) has quit (Quit: Konversation terminated!)
2012-03-02 11:43:34	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-03-02 12:17:07	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-03-02 13:26:52	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-03-02 13:33:26	-->	cheezy (~cheezy@adsl-74-190-194-33.asm.bellsouth.net) has joined #watir
2012-03-02 15:31:54	<--	cheezy (~cheezy@adsl-74-190-194-33.asm.bellsouth.net) has quit (Remote host closed the connection)
2012-03-02 15:35:50	-->	cheezy (~cheezy@adsl-74-190-194-33.asm.bellsouth.net) has joined #watir
2012-03-02 15:36:54	<--	cheezy (~cheezy@adsl-74-190-194-33.asm.bellsouth.net) has quit (Remote host closed the connection)
2012-03-02 15:44:29	-->	s0ber_ (~s0ber@114-36-235-31.dynamic.hinet.net) has joined #watir
2012-03-02 15:46:33	<--	s0ber (~s0ber@114-36-241-59.dynamic.hinet.net) has quit (Ping timeout: 252 seconds)
2012-03-02 15:46:58	--	s0ber_ is now known as s0ber
2012-03-02 16:41:13	-->	gheegh (~gheegh@pool-173-66-230-153.washdc.fios.verizon.net) has joined #watir
2012-03-02 16:41:32	gheegh	Hey all.. having a heck of a time scripting something.. I need some advice.
2012-03-02 16:43:18	gheegh	I have an iframe, that the content is rendered via Javascript.. I need to be able to retrieve the information in that iframe.
2012-03-02 16:47:17	zeljko	what is the problem?
2012-03-02 16:47:29	zeljko	the best thing is if you could provide link to the page
2012-03-02 16:49:23	gheegh	OK. This is the page with the links I can click. I can do this. I am clicking links with an MSDS. THen, it opens a page I can't manage to do anything with.  http://www.sigmaaldrich.com/catalog/Lookup.do?N5=All&N3=mode+matchpartialmax&N4=L-Cysteine&D7=0&D10=L-Cysteine&N1=S_ID&ST=RS&N25=0&F=PR
2012-03-02 16:51:09	gheegh	if you click that page, then click the first MSDS, you'll get a page that I can't manage to process.. I need to be able to retrieve (into memory is OK) that PDF that is generated, to do a check for updates.
2012-03-02 16:55:33	gheegh	Here is the script I'm using so far. https://gist.github.com/1962101
2012-03-02 17:11:25	zeljko	watir or watir-webdriver gem?
2012-03-02 17:18:36	zeljko	you just want to check if the pdf is on the page?
2012-03-02 17:18:39	zeljko	or download it?
2012-03-02 17:19:14	gheegh	watir-webdriver gem
2012-03-02 17:19:36	gheegh	i'm trying to get the text from the pdf so i can scan it
2012-03-02 17:19:59	zeljko	the problem is that pdf is rendered by a pdf plugin right?
2012-03-02 17:20:13	zeljko	and watir can not access contents
2012-03-02 17:20:15	gheegh	yes.. i think..
2012-03-02 17:20:19	zeljko	pdf, flash...
2012-03-02 17:20:35	jarib	gheegh: use http://watirwebdriver.com/browser-downloads/ to download the pdf to disk, then use a ruby pdf library to read it
2012-03-02 17:21:38	gheegh	when i click on that link.. i see the frame..
2012-03-02 17:22:14	zeljko	but?
2012-03-02 17:22:21	gheegh	but there's nothing in it.
2012-03-02 17:22:34	jarib	that's odd
2012-03-02 17:22:40	jarib	works for me
2012-03-02 17:22:43	gheegh	Oh?
2012-03-02 17:22:55	gheegh	Maybe I don't know what I"m doing.. :-)
2012-03-02 17:23:08	gheegh	i'm a ruby programmer.. but I don't use watir much.
2012-03-02 17:23:26	jarib	you're talking about this link, right? http://watirwebdriver.com/browser-downloads/
2012-03-02 17:23:36	zeljko	if you are using firefox, then probably webdriver firefox profile does not have pdf plugin installed or enabled
2012-03-02 17:23:45	zeljko	so you are probably seeing a blank space instead of pdf
2012-03-02 17:23:53	gheegh	no, I'm talking about the frame..
2012-03-02 17:23:59	zeljko	try with chrome, it should have pdf support by default
2012-03-02 17:24:04	gheegh	jarib: I'm going to try that now
2012-03-02 17:24:05	jarib	the link i pasted explains how to do this.
2012-03-02 17:24:30	zeljko	jarib: you are in the US now, right?
2012-03-02 17:24:31	jarib	once the pdf is on disk, use the pdf-reader gem to pull things out of it.
2012-03-02 17:25:00	zeljko	jarib: anyway, see you next week
2012-03-02 17:25:54	jarib	yes, just arrived in San Francisco (have been in Santa Clara since monday)
2012-03-02 17:25:56	jarib	where are you now?
2012-03-02 17:27:18	zeljko	Guadalajara, Mexico
2012-03-02 17:27:39	zeljko	flying to Austin on Wednesday
2012-03-02 17:27:56	gheegh	jarib: i do a lot of pdf processing.. so I am cool then once it's on disk
2012-03-02 17:28:11	gheegh	i'll try chrome as well
2012-03-02 17:28:11	gheegh	thanks
2012-03-02 17:29:43	zeljko	glad I could help (if you are thanking me) :)
2012-03-05 10:43:21	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-05 10:43:21	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu gheegh iamchrisf jarib jarm0 jibay_ Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-05 10:43:21	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-05 10:43:23	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-05 10:53:36	<--	Remco (~remco@unaffiliated/remco) has quit (Ping timeout: 265 seconds)
2012-03-05 11:07:39	-->	Remco (~remco@5ED5EA79.cm-7-6d.dynamic.ziggo.nl) has joined #watir
2012-03-05 11:07:47	<--	Remco (~remco@5ED5EA79.cm-7-6d.dynamic.ziggo.nl) has quit (Changing host)
2012-03-05 11:07:47	-->	Remco (~remco@unaffiliated/remco) has joined #watir
2012-03-05 11:40:44	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-03-05 12:25:45	gheegh	Hi all. I'm looking for some guidance. I can't manage to get access to a PDF or its info from within Watir. i'm not sure what I"m doing wrong, but i've been fighting this issue for a couple of days now. Anyone have guidance? I'm trying to retrieve the PDF so I can parse it and pull information from it.  https://gist.github.com/1962101
2012-03-05 12:33:08	gheegh	basically.. there is an embed tag. and I can get to it.. but how do I get the pdf that is contained in it?
2012-03-05 12:54:00	zeljko	not sure
2012-03-05 12:54:17	zeljko	I remember trying it a few days ago, but I did not have the time to play with it since
2012-03-05 13:34:29	gheegh	zeljko: yeah, it's really frustrating.. I'm a fairly good ruby programmer.. i would have thought I'd have figured it out by now..
2012-03-05 13:36:09	gheegh	zeljko: So, the issue, I think, is that there is a plugin that is javascript that is run insie of an iframe that renders the "pdf".  this is the issue.
2012-03-05 13:36:26	gheegh	so, the browser doesn't see it as a pdf that needs to be downloaded.
2012-03-05 13:47:40	gheegh	Does anyone know anyone that consults on Watir that could be willing to help out.. on such a small thing? I'm very willing to pay to solve this problem.
2012-03-05 13:51:15	zeljko	gheegh: I will have some time this week
2012-03-05 13:51:45	gheegh	zeljko: Thanks. I don't think for an expert it will take that long.. this should either "work" or "not work" ..
2012-03-05 13:52:00	zeljko	one solution that comes to mind is to try to open the page with a browser that does not have pdf plugin
2012-03-05 13:52:14	zeljko	maybe then the browser will offer to automatically download the file
2012-03-05 13:52:39	gheegh	zeljko: yep.. tried that.. i've turned off everything but java.. and it still renders in a browser.. might be the way i'm doing it..
2012-03-05 13:52:53	zeljko	in chrome, or ff?
2012-03-05 13:53:22	zeljko	I think chrome has pdf plugin built in, ff probably does not
2012-03-05 13:54:20	zeljko	gheegh:
2012-03-05 13:54:29	zeljko	this is your question at watir-general?
2012-03-05 13:54:30	zeljko	https://groups.google.com/forum/?fromgroups&hl=en_US#!topic/watir-general/WPY7JFmY3so
2012-03-05 13:55:44	gheegh	zeljko: that's me.
2012-03-05 13:56:03	zeljko	ok, will reply there this week
2012-03-05 13:56:38	zeljko	maybe today, but I am not sure, I am traveling this week, so there will probably other stuff to do
2012-03-05 13:57:28	gheegh	zeljko: Understood.. I'd love the help. It's a simple thing, but it's holding back a large chunk of "delivering".  So, thanks.. You've got my profile there.. I'm happy to give you my email or whatever.
2012-03-05 14:02:39		irc: disconnected from server
2012-03-05 14:02:57	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-05 14:02:57	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh iamchrisf jarib jarm0 jibay_ Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-05 14:02:57	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-05 14:03:01	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-05 14:05:34	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-05 14:49:32	<--	s0ber (~s0ber@114-36-235-31.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-03-05 14:50:11	-->	s0ber (~s0ber@114-36-241-156.dynamic.hinet.net) has joined #watir
2012-03-05 16:52:37	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-03-05 20:58:18		irc: disconnected from server
2012-03-06 08:51:34	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-06 08:51:34	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh iamchrisf jarib jarm0 jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-06 08:51:34	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-06 08:51:39	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-06 09:40:23	<--	iamchrisf (~chrisferr@38.104.188.238) has quit (Quit: iamchrisf)
2012-03-06 10:57:55	--	You are now known as benbeltran
2012-03-06 12:27:12	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-03-06 15:16:22	-->	s0ber_ (~s0ber@114-36-234-118.dynamic.hinet.net) has joined #watir
2012-03-06 15:17:37	<--	s0ber (~s0ber@114-36-241-156.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-03-06 15:17:48	--	s0ber_ is now known as s0ber
2012-03-06 18:48:18		irc: disconnected from server
2012-03-06 18:48:40	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-06 18:48:40	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-06 18:48:40	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-06 18:48:46	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-06 18:50:52	<--	jibay (~jibay@ANancy-155-1-44-61.w90-13.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-03-06 18:51:14	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-06 19:27:54		irc: disconnected from server
2012-03-07 09:18:43	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-07 09:18:43	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber volter_ voodoofish wapiflapi WOFall zeljko]
2012-03-07 09:18:43	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-07 09:18:48	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-07 09:55:13	--	You are now known as benbeltran
2012-03-07 10:11:18	<--	volter_ (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-03-07 11:03:54	<--	gheegh (~gheegh@pool-173-66-230-153.washdc.fios.verizon.net) has quit (Quit: is out)
2012-03-07 11:23:16	-->	gheegh (~gheegh@pool-173-66-230-153.washdc.fios.verizon.net) has joined #watir
2012-03-07 11:48:13	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-03-07 14:31:10	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Ping timeout: 276 seconds)
2012-03-07 14:31:30	-->	fabrice31 (~fabrice31@89.30.127.162) has joined #watir
2012-03-07 16:00:24	-->	voodoofish4301 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-07 16:00:32	<--	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has quit (Ping timeout: 252 seconds)
2012-03-07 16:50:31	gheegh	Anyone around that might be able to help with an issue? I've now been stuck on for almost a week.  Basically.. i can SEE the document I want in the browser, but I can't seem to access it.. its in an iframe, and it's "rendered" via javascript.. here's my code so far https://gist.github.com/1962101
2012-03-08 12:16:30	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-08 12:16:30	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-08 12:16:30	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-08 12:16:32	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-08 12:45:31	-->	Bob_bjones (41c99053@gateway/web/freenode/ip.65.201.144.83) has joined #watir
2012-03-08 15:03:19	-->	jibay (~jibay@ANancy-652-1-383-135.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-08 21:59:04		irc: disconnected from server
2012-03-09 09:23:15	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-09 09:23:15	--	Nicks #watir: [benbeltran Bob_bjones djinni fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-09 09:23:15	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-09 09:23:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-09 09:44:54	<--	zeljko (u4950@gateway/web/irccloud.com/x-gqbuwjaxjyfpzkcy) has quit (Quit: Connection closed for inactivity)
2012-03-09 11:30:56	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-03-09 12:39:12	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-03-09 12:49:36	<--	Bob_bjones (41c99053@gateway/web/freenode/ip.65.201.144.83) has quit (Ping timeout: 245 seconds)
2012-03-09 13:00:16	<--	jibay (~jibay@ANancy-652-1-383-135.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 252 seconds)
2012-03-09 15:09:28	<--	s0ber (~s0ber@114-36-234-118.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-03-09 15:11:15	-->	s0ber (~s0ber@114-36-243-39.dynamic.hinet.net) has joined #watir
2012-03-09 15:11:25	-->	jibay (~jibay@ANancy-652-1-383-135.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-09 15:28:29	<--	jibay (~jibay@ANancy-652-1-383-135.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 245 seconds)
2012-03-09 15:31:16	-->	jibay (~jibay@ANancy-652-1-363-53.w81-49.abo.wanadoo.fr) has joined #watir
2012-03-09 17:55:33	<--	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has left #watir
2012-03-09 18:19:53		irc: disconnected from server
2012-03-12 09:39:01	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-12 09:39:01	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber volter voodoofish wapiflapi WOFall]
2012-03-12 09:39:01	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-12 09:39:01	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-12 10:03:45	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-12 11:17:02	-->	zeljko (u4950@gateway/web/irccloud.com/x-ctrkflpzywdqkcyp) has joined #watir
2012-03-12 14:37:56	-->	s0ber_ (~s0ber@114-36-245-37.dynamic.hinet.net) has joined #watir
2012-03-12 14:40:03	<--	s0ber (~s0ber@114-36-243-39.dynamic.hinet.net) has quit (Ping timeout: 245 seconds)
2012-03-12 14:40:15	--	s0ber_ is now known as s0ber
2012-03-12 18:10:55		irc: disconnected from server
2012-03-12 18:11:10	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-12 18:11:10	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-12 18:11:10	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-12 18:11:16	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-12 18:13:12	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-13 08:49:42		irc: disconnected from server
2012-03-13 08:49:56	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-13 08:49:57	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu Geniack jarib jarm0 jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-13 08:49:57	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-13 08:50:03	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-13 09:17:14		irc: disconnected from server
2012-03-13 09:17:51	-->	benbeltran2 (~benbeltra@187.163.28.116) has joined #watir
2012-03-13 09:17:51	--	Nicks #watir: [benbeltran1 benbeltran2 djinni fabrice31 fellu Geniack jarib jarm0 jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-13 09:17:51	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-13 09:17:57	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-13 09:19:58	<--	benbeltran1 (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-13 09:21:25		irc: disconnected from server
2012-03-13 09:21:49	-->	benbeltran3 (~benbeltra@187.163.28.116) has joined #watir
2012-03-13 09:21:49	--	Nicks #watir: [benbeltran2 benbeltran3 djinni fabrice31 fellu Geniack jarib jarm0 jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-13 09:21:49	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-13 09:21:55	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-13 09:22:06	--	You are now known as benbeltran
2012-03-13 09:24:14	<--	benbeltran2 (~benbeltra@187.163.28.116) has quit (Ping timeout: 246 seconds)
2012-03-13 09:37:43	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-13 09:53:14	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-13 09:53:14	--	Nicks #watir: [benbeltran djinni fabrice31 fellu Geniack jarib jarm0 jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-13 09:53:14	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-13 09:53:14	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-13 11:26:15	<--	Geniack (~geniack@pD954C5FC.dip.t-dialin.net) has quit (Quit: leaving)
2012-03-13 12:27:07	<--	jibay (~jibay@ANancy-155-1-54-14.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-03-13 12:35:35	-->	jibay (~jibay@ANancy-155-1-28-65.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-13 13:08:51	-->	conky (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has joined #watir
2012-03-13 13:09:14	conky	jarib: ping
2012-03-13 13:46:43	<--	conky (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has left #watir
2012-03-13 18:07:32		irc: disconnected from server
2012-03-13 18:07:51	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-13 18:07:51	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-13 18:07:51	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-13 18:07:57	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-13 18:38:20		irc: disconnected from server
2012-03-14 09:18:01	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-14 09:18:01	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 jibay rcrossan Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-14 09:18:01	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-14 09:18:08	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-14 09:31:02	fabrice31	did you try with a code like ie.radio(:name => 'bla', :index => 1).set ?
2012-03-14 10:50:33	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-14 11:37:01	rcrossan	@fabrice31 I just tried that, no error this time, but also didn't see that it did anything in the browser.  I'll play with that suggestion, could be on right path.
2012-03-14 11:40:01	rcrossan	n/m I miss typed something, I corrected it to do what you suggested just now and it worked! Thank you so much.
2012-03-14 14:02:21		irc: disconnected from server
2012-03-14 14:04:36	-->	benbeltran2 (~benbeltra@187.163.28.116) has joined #watir
2012-03-14 14:04:36	--	Nicks #watir: [benbeltran1 benbeltran2 djinni fabrice31 fellu gheegh jarib jarm0 jibay rcrossan Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-14 14:04:36	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-14 14:04:43	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-14 14:05:07	<--	benbeltran1 (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-14 15:31:02	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Quit: ChatZilla 0.9.88.1 [Firefox 10.0.2/20120215223356])
2012-03-14 15:37:07	<--	zeljko (u4950@gateway/web/irccloud.com/x-zymqrahotmamnxdn) has quit (Remote host closed the connection)
2012-03-14 15:49:42	-->	zeljko (u4950@gateway/web/irccloud.com/x-qevimunukelcwwpe) has joined #watir
2012-03-14 16:02:15	<--	zeljko (u4950@gateway/web/irccloud.com/x-qevimunukelcwwpe) has quit (Remote host closed the connection)
2012-03-14 16:22:48	-->	zeljko (u4950@gateway/web/irccloud.com/x-oykwcsvvnhbwlips) has joined #watir
2012-03-14 16:50:46	-->	watirwd (~watirwd@sh1-ext.rs.github.com) has joined #watir
2012-03-14 16:50:46	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/fJPkoA
2012-03-14 16:50:46	watirwd	[watir-webdriver/master] Correctly namespace exception when browser was already closed. Closes #127. - Jari Bakken
2012-03-14 16:50:46	<--	watirwd (~watirwd@sh1-ext.rs.github.com) has left #watir
2012-03-14 16:57:59	-->	travis-ci (~travis-ci@ec2-67-202-60-187.compute-1.amazonaws.com) has joined #watir
2012-03-14 16:57:59	travis-ci	[travis-ci] watir/watir-webdriver#56 (master - e760dcf : Jari Bakken): The build passed.
2012-03-14 16:57:59	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/4d516c9...e760dcf
2012-03-14 16:57:59	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/867978
2012-03-14 16:57:59	<--	travis-ci (~travis-ci@ec2-67-202-60-187.compute-1.amazonaws.com) has left #watir
2012-03-14 17:02:14	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-14 17:03:18	cwang	can anyone help me with isolating cucumber scenarios with watir? I want to restart the session without having to close the browser after each scenario is executed
2012-03-14 17:51:43	--	You are now known as benbeltran
2012-03-14 18:30:24		irc: disconnected from server
2012-03-15 09:22:25	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-15 09:22:25	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0 jibay kW_ Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-15 09:22:25	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-15 09:22:31	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-15 09:25:07	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-15 10:36:02	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-15 12:48:43	<--	kW_ (~user@178-25-65-237-dynip.superkabel.de) has quit (Ping timeout: 264 seconds)
2012-03-15 12:49:40	cwang	is there a way to select children elements?
2012-03-15 12:50:20	cwang	for example I want to select the first link within a div with an id
2012-03-15 12:52:07	zeljko	browser.div.a
2012-03-15 12:52:22	zeljko	or, more verbose
2012-03-15 12:54:35	zeljko	browser.div(:id => "id").a
2012-03-15 12:54:42	zeljko	or, even more verbose
2012-03-15 12:55:06	zeljko	browser.div(:id => "id").a(:index => 1)
2012-03-15 12:55:29	zeljko	browser.div.a will click the first link in the first div
2012-03-15 14:14:07	-->	kW_ (~user@port-92-206-61-230.dynamic.qsc.de) has joined #watir
2012-03-15 14:49:40	cwang	zeljko, thanks got it! :)
2012-03-15 15:00:43	zeljko	cwang: glad I could help :)
2012-03-15 15:00:57	cwang	zeljko, you are the creator?
2012-03-15 15:11:06	zeljko	cwang: of watir? no
2012-03-15 15:11:39	zeljko	bret and paul created it, nowdays jarib and jarm0 work on it mostly
2012-03-15 15:13:07	zeljko	read all about it here
2012-03-15 15:13:09	zeljko	https://github.com/zeljkofilipin/watirbook/blob/master/about.md
2012-03-15 15:13:21	zeljko	https://github.com/zeljkofilipin/watirbook/blob/master/about_extended.md
2012-03-15 15:28:58	cwang	zeljko: I  just downloaded the book. I just started using watir yesterday.
2012-03-15 15:29:08	cwang	zeljko: will have to read the book in my spare time
2012-03-15 15:54:43	<--	s0ber (~s0ber@114-36-245-37.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-03-15 15:54:48	<--	wapiflapi (wapiflapi@darksaber.tk) has quit (Ping timeout: 272 seconds)
2012-03-15 15:55:29	zeljko	I am looking forward to the comments :)
2012-03-15 15:55:40	zeljko	I hope to have more time to work on the book soon
2012-03-15 15:56:28	-->	s0ber (~s0ber@114-36-231-170.dynamic.hinet.net) has joined #watir
2012-03-15 16:12:15	cwang	zeljko: maybe you can help me with this. so I'm using cucumber with watir to test to see if some text exists on page
2012-03-15 16:12:56	cwang	zeljko: basically I click a click and then I do something like @browser.text.include? "foobar"
2012-03-15 16:13:15	cwang	the result should return false, but my test passes with a green state
2012-03-15 16:25:20	cwang	zeljko: not sure why that happens, but I came up with a different solution
2012-03-15 16:25:45	cwang	zeljko: I'll probably try to help contribute to the project or report issues when I can
2012-03-15 16:38:05	zeljko	cwang: you should use "should"
2012-03-15 16:38:26	zeljko	@browser.text.should include "foobar"
2012-03-15 16:38:33	cwang	oh
2012-03-15 16:38:42	zeljko	(please check the syntax, I am not sure I got it right)
2012-03-15 16:38:46	zeljko	but something like that
2012-03-15 16:39:35	cwang	zeljko: yeah, I ended up doing something like @browser.spans.first.text.should == "foobar"
2012-03-15 16:39:50	cwang	zeljko: I'll play around with it a little bit more later
2012-03-15 18:35:41		irc: disconnected from server
2012-03-15 18:35:58	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-15 18:35:58	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fabrice31 fellu gheegh jarib jarm0 jibay kW_ Remco s0ber voodoofish WOFall zeljko]
2012-03-15 18:35:58	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-15 18:36:04	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-15 18:38:54	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-15 21:23:41		irc: disconnected from server
2012-03-16 09:14:11	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-16 09:14:11	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 jibay kW_ Remco s0ber vitoravelino volter voodoofish wapiflapi WOFall zeljko]
2012-03-16 09:14:11	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-03-16 09:14:17	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-16 09:36:29	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-16 10:00:31	--	You are now known as benbeltran
2012-03-16 10:22:18	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-16 10:41:57	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-03-16 11:02:27		irc: disconnected from server
2012-03-16 11:03:32	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-16 11:03:32	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fellu gheegh jarib jarm0 jibay kW_ Remco s0ber vitoravelino voodoofish wapiflapi WOFall zeljko]
2012-03-16 11:03:32	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-03-16 11:03:38	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-16 11:05:13	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-16 11:31:40	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-16 11:45:20	--	You are now known as benbeltran
2012-03-16 13:32:57	<--	vitoravelino (~vitoravel@unaffiliated/vtr) has quit (Quit: Leaving)
2012-03-16 14:31:28	cwang	I'm running into an issue where I'm running my test suite, where I am getting this exception. Modal dialog present (Selenium::WebDriver::Error::UnhandledAlertError)
2012-03-16 14:32:17	cwang	I read some posts on stackoverflow about possibly handling this issue
2012-03-16 14:32:46	cwang	but I I want to run this in my after hook for cucumber scenarios on dealing with this because it ends up breaking the rest of my tests
2012-03-16 14:35:37	cwang	any suggestions on how to dismiss this popup in my after hook? because it is blocking the rest of my tests
2012-03-16 15:10:05	jarib	cwang: why in the After hook? your test should know when to expect popups
2012-03-16 15:11:00	jarib	in any case, browser.driver.switch_to.alert.dismiss should do the trick
2012-03-16 15:11:27	cwang	jarib: I am not expecting the popup, I think its occuring because of a js error
2012-03-16 15:11:54	cwang	it seems intermittent
2012-03-16 15:12:30	cwang	well basically in my after hook I am restarting the session by logging the user out of the system I'm testing
2012-03-16 15:12:31	jarib	then that's a bug and the test is correct in failing
2012-03-16 15:12:40	cwang	and if there is an error it won't execute any further commands
2012-03-16 15:12:55	cwang	jarib: yes that is true
2012-03-16 15:13:27	cwang	jarib: I was just seeing if there was a way to dismiss the popup, which you have provided :)
2012-03-16 15:13:28	jarib	if that error is raised, the dialog will be dismissed automatically
2012-03-16 15:13:48	jarib	so you could just rescue the error and continue
2012-03-16 15:14:39	cwang	yeah, I was thinking of how to handle the the rescue
2012-03-16 15:15:34	cwang	does browser.driver.switch_to.alert.dismiss work with firefox/chrome?
2012-03-16 15:15:54	jarib	yes
2012-03-16 15:18:43	cwang	jarib: cool thanks for you help
2012-03-16 15:18:47	cwang	your*
2012-03-16 15:20:27	jarib	np
2012-03-16 15:32:49		irc: disconnected from server
2012-03-16 15:33:10	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-16 15:33:10	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fellu gheegh jarib jarm0 jibay kW_ Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-16 15:33:10	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-03-16 15:33:16	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-16 15:35:57	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-16 18:16:43	<--	cwang (~cwang@173.247.202.186) has quit (Ping timeout: 260 seconds)
2012-03-17 12:31:47		irc: disconnected from server
2012-03-18 21:59:29	-->	benbeltran1 (~benbeltra@200.76.90.225) has joined #watir
2012-03-18 21:59:29	--	Nicks #watir: [benbeltran1 djinni fellu gheegh jarib jarm0p Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-18 21:59:29	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-03-18 21:59:35	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-19 01:06:53	-->	easonhan (~easonhan@121.14.96.125) has joined #watir
2012-03-19 11:43:28		irc: disconnected from server
2012-03-19 12:26:13	-->	benbeltran1 (~benbeltra@200.76.90.175) has joined #watir
2012-03-19 12:26:13	--	Nicks #watir: [benbeltran1 cwang djinni fabrice31 fellu gheegh jarib jarm0p jibay michaeloboyle rcrossan Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-19 12:26:13	--	Channel #watir: 18 nicks (0 ops, 0 halfops, 0 voices, 18 normals)
2012-03-19 12:26:21	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-19 13:12:14	cwang	so I'm using cucumber + watir-webdriver. I'm wondering how I could toggle the headless environment setup listed here: http://watir.com/2011/01/22/simple-cucumber-watir-page-object-pattern-framework/
2012-03-19 14:41:49	cwang	I'm wondering how I can deal with Modal dialog present (Selenium::WebDriver::Error::UnhandledAlertError)
2012-03-19 14:42:14	cwang	when I run the tests I can hear that a popup occurs, but I don't visually see it
2012-03-19 18:50:41		irc: disconnected from server
2012-03-19 18:53:23	-->	benbeltran1 (~benbeltra@200.76.90.232) has joined #watir
2012-03-19 18:53:23	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0p jibay Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-19 18:53:23	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-19 18:53:29	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-19 19:42:07		irc: disconnected from server
2012-03-19 19:42:29	-->	benbeltran1 (~benbeltra@200.76.90.232) has joined #watir
2012-03-19 19:42:30	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0p jibay Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-19 19:42:30	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-19 19:42:35	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-19 19:51:00	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Quit: Leaving.)
2012-03-19 20:33:21	<--	jibay (~jibay@ANancy-155-1-28-65.w90-13.abo.wanadoo.fr) has quit (Remote host closed the connection)
2012-03-19 22:50:24		irc: disconnected from server
2012-03-19 22:50:49	-->	benbeltran1 (~benbeltra@200.76.90.232) has joined #watir
2012-03-19 22:50:49	--	Nicks #watir: [benbeltran1 djinni eason fabrice31 fellu gheegh jarib jarm0p Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-19 22:50:49	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-19 22:50:56	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-19 23:10:46		irc: disconnected from server
2012-03-20 09:12:51	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-20 09:12:51	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0p rcrossan Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-20 09:12:51	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-20 09:12:57	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-20 09:18:37	rcrossan	been trying to access a java-menu that has a selection in the collapsed tree that I wish to select. I am not receiving an error, the script passes, but the selection is not changing. Any ideas? https://gist.github.com/2136878
2012-03-20 09:59:41	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-20 09:59:41	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0p rcrossan Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-20 09:59:41	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-20 09:59:41	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-20 10:10:00	zeljko	rcrossan: java-menu?
2012-03-20 10:13:57	rcrossan	its basically a drop down that has collapsed selections. I had noticed reading the source in firebug that it states java-menu at the beginning of the coding for that menu. All the watir recorders do not find an element using that menu except webmetrics. I am wondering if the elements I need access to though will be better handled with watir 3.0. I read the pre release is available as of 3/18
2012-03-20 10:15:25	rcrossan	here is a link for gist that shows the source code of what I am trying to select. https://gist.github.com/2137096
2012-03-20 10:21:42	zeljko	have to go now, but will take a look later, I saw you post at watir-general, will reply there
2012-03-20 10:30:08	rcrossan	thanks for any suggestions!
2012-03-20 10:32:58	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-03-20 10:33:23	-->	cwang (~cwang@c-98-234-57-86.hsd1.ca.comcast.net) has joined #watir
2012-03-20 11:08:11	<--	cwang (~cwang@c-98-234-57-86.hsd1.ca.comcast.net) has quit (Ping timeout: 252 seconds)
2012-03-20 11:50:11	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-20 11:50:11	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0p rcrossan Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-20 11:50:11	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-20 11:50:11	--	Notice(zelazny.freenode.net): [freenode-info] channel flooding and no channel staff around to help? Please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-03-20 11:50:11	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-20 11:51:42	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-20 12:31:49	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-20 13:28:03	-->	jarm0 (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has joined #watir
2012-03-20 13:29:46	<--	jarm0p (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has quit (Ping timeout: 265 seconds)
2012-03-20 13:38:21	-->	jarm0p (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has joined #watir
2012-03-20 13:39:55	<--	jarm0 (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has quit (Ping timeout: 265 seconds)
2012-03-20 14:03:00	--	jarm0p is now known as jarm0
2012-03-20 14:29:20	-->	jarm0p (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has joined #watir
2012-03-20 14:31:19	<--	jarm0 (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has quit (Ping timeout: 264 seconds)
2012-03-20 14:51:07	--	jarm0p is now known as jarm0
2012-03-20 15:19:08	<--	cwang (~cwang@173.247.202.186) has quit (Quit: Leaving)
2012-03-20 15:53:04	<--	s0ber (~s0ber@114-36-235-126.dynamic.hinet.net) has quit (Ping timeout: 276 seconds)
2012-03-20 16:20:04	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-20 16:20:04	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0 rcrossan Remco voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-20 16:20:04	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-20 16:20:04	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-20 16:29:10	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-20 16:29:10	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0 Remco voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-20 16:29:10	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-03-20 16:29:10	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-20 16:40:40	-->	s0ber (~s0ber@114-36-235-126.dynamic.hinet.net) has joined #watir
2012-03-20 17:14:37	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Read error: Connection reset by peer)
2012-03-20 17:16:58	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-20 17:45:59	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-20 17:59:38	<--	cwang (~cwang@173.247.202.186) has quit (Quit: Leaving)
2012-03-20 18:10:27		irc: disconnected from server
2012-03-20 18:10:42	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-20 18:10:42	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-20 18:10:42	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-20 18:10:48	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-21 09:01:02		irc: disconnected from server
2012-03-21 09:01:16	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-21 09:01:16	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-21 09:01:16	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-21 09:01:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-21 10:19:12	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-21 10:57:06	-->	jibay (~jibay@ANancy-155-1-24-107.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-21 11:16:46	-->	jibay_ (~jibay@ANancy-155-1-43-61.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-21 11:16:55	<--	jibay (~jibay@ANancy-155-1-24-107.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 264 seconds)
2012-03-21 11:21:13	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-03-21 11:30:55	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-21 12:59:13	<--	jibay_ (~jibay@ANancy-155-1-43-61.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 245 seconds)
2012-03-21 13:00:23	-->	jibay_ (~jibay@ANancy-155-1-17-42.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-21 14:27:15	-->	watirwd (~watirwd@sh1-ext.rs.github.com) has joined #watir
2012-03-21 14:27:16	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/EQtzaQ
2012-03-21 14:27:16	watirwd	[watir-webdriver/master] Fix for 1.8 users - Jari Bakken
2012-03-21 14:27:16	<--	watirwd (~watirwd@sh1-ext.rs.github.com) has left #watir
2012-03-21 14:38:30	-->	travis-ci (~travis-ci@ec2-50-17-25-89.compute-1.amazonaws.com) has joined #watir
2012-03-21 14:38:31	travis-ci	[travis-ci] watir/watir-webdriver#61 (master - 069470f : Jari Bakken): The build passed.
2012-03-21 14:38:31	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/66ca293...069470f
2012-03-21 14:38:31	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/917041
2012-03-21 14:38:31	<--	travis-ci (~travis-ci@ec2-50-17-25-89.compute-1.amazonaws.com) has left #watir
2012-03-21 14:54:30	-->	s0ber_ (~s0ber@114-36-240-66.dynamic.hinet.net) has joined #watir
2012-03-21 14:54:56	<--	s0ber (~s0ber@114-36-235-126.dynamic.hinet.net) has quit (Read error: Operation timed out)
2012-03-21 14:55:17	--	s0ber_ is now known as s0ber
2012-03-21 18:03:53	<--	jibay_ (~jibay@ANancy-155-1-17-42.w90-13.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-03-21 18:34:46		irc: disconnected from server
2012-03-21 18:35:03	-->	benbeltran2 (~benbeltra@187.163.28.116) has joined #watir
2012-03-21 18:35:03	--	Nicks #watir: [benbeltran1 benbeltran2 djinni fellu gheegh jarib jarm0 Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-03-21 18:35:03	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-21 18:35:09	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-21 18:37:55	<--	benbeltran1 (~benbeltra@187.163.28.116) has quit (Ping timeout: 264 seconds)
2012-03-21 21:21:33		irc: disconnected from server
2012-03-21 21:24:18	-->	benbeltran2 (~benbeltra@200.76.90.237) has joined #watir
2012-03-21 21:24:18	--	Nicks #watir: [benbeltran2 djinni fellu gheegh jarib jarm0 Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-21 21:24:18	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-03-21 21:24:18	--	Notice(pratchett.freenode.net): [freenode-info] help freenode weed out clonebots -- please register your IRC nick and auto-identify: http://freenode.net/faq.shtml#nicksetup
2012-03-21 21:24:25	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-21 22:00:05	-->	thetrav (~thetrav@203-206-227-95.perm.iinet.net.au) has joined #watir
2012-03-21 22:00:28	thetrav	is this channel about the watir-webdriver framework?
2012-03-22 00:07:13	<--	thetrav (~thetrav@203-206-227-95.perm.iinet.net.au) has quit (Quit: This computer has gone to sleep)
2012-03-22 08:50:56		irc: disconnected from server
2012-03-22 08:51:12	-->	benbeltran2 (~benbeltra@187.163.28.116) has joined #watir
2012-03-22 08:51:12	--	Nicks #watir: [benbeltran2 djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-22 08:51:12	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-03-22 08:51:18	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-22 09:39:35	--	You are now known as benbeltran
2012-03-22 10:53:56	-->	jibay (~jibay@ANancy-155-1-17-42.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-22 12:04:29	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-22 12:05:48	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-03-22 12:09:37	rcrossan	trying to use win32screenshot. When I require such gem then I received error: test_me(My_test) LoadError: no such file to load -- watir/ie. Thought if I run the script without adding require win32/screenshot then script runs with no errors so I know I must be missing something to allow win32/screenshot to run. I have reviewed https://groups.google.com/forum/#!topic/watir-general/s_yymff1qig...
2012-03-22 12:09:39	rcrossan	...and have updated my gems, rubygems, and watir, but still only errors with win32screenshot included in script.
2012-03-22 12:13:59	jarib	rcrossan: are you using watir-webdriver?
2012-03-22 12:16:47	rcrossan	dont think so
2012-03-22 12:35:58	zeljko	Page Objects and Cucumber charity workshop live streaming! kondoot.com/watir #watirbazaar
2012-03-22 13:36:21	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Quit: ChatZilla 0.9.88.1 [Firefox 10.0.2/20120215223356])
2012-03-22 13:38:25	<--	wapiflapi (wapiflapi@darksaber.tk) has quit (Quit: Lost terminal)
2012-03-22 13:38:43	-->	wapiflapi (wapiflapi@darksaber.tk) has joined #watir
2012-03-22 14:36:50	-->	thetrav (~thetrav@27-33-153-200.static.tpgi.com.au) has joined #watir
2012-03-22 15:29:08	-->	charleyb (~charleyb@c-174-51-94-34.hsd1.co.comcast.net) has joined #watir
2012-03-22 15:31:43	<--	thetrav (~thetrav@27-33-153-200.static.tpgi.com.au) has quit (Quit: This computer has gone to sleep)
2012-03-22 15:32:11	charleyb	zeljko: how do you handle common page "fragments" or "partials" like header/footer/etc :)
2012-03-22 15:35:14	-->	bret (1899b5aa@gateway/web/freenode/ip.24.153.181.170) has joined #watir
2012-03-22 15:36:31	--	Mode #watir [+o charleyb] by ChanServ
2012-03-22 15:39:03	@charleyb	anyone?
2012-03-22 15:40:43	zeljko	charleyb: I am here
2012-03-22 15:40:56	zeljko	not there yet :)
2012-03-22 15:40:59	zeljko	will ask
2012-03-22 15:48:56	zeljko	listen to chzy now :)
2012-03-22 15:49:06	zeljko	talking about partials right now
2012-03-22 15:50:11	@charleyb	bwahaha :)
2012-03-22 15:52:44	@charleyb	it was somewhat of a leading question :)
2012-03-22 15:53:58	zeljko	did not even have the time to ask, he just started talking about that
2012-03-22 15:59:10	 *	jarib uses modules
2012-03-22 16:06:16	<--	bret (1899b5aa@gateway/web/freenode/ip.24.153.181.170) has quit (Ping timeout: 245 seconds)
2012-03-22 16:06:19	@charleyb	partials are pages
2012-03-22 16:17:44	<--	charleyb (~charleyb@c-174-51-94-34.hsd1.co.comcast.net) has quit (Remote host closed the connection)
2012-03-22 20:42:17		irc: disconnected from server
2012-03-22 22:12:43	-->	benbeltran (~benbeltra@200.76.90.251) has joined #watir
2012-03-22 22:12:43	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-22 22:12:43	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-03-22 22:12:49	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-23 08:50:36		irc: disconnected from server
2012-03-23 08:51:01	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-23 08:51:01	--	Nicks #watir: [avida benbeltran blue__ bluegrasscoder bluegrasscoder_ bluegrasscoder__ bramha bret cheezy djinni DMcNulla fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-03-23 08:51:01	--	Channel #watir: 24 nicks (0 ops, 0 halfops, 0 voices, 24 normals)
2012-03-23 08:51:08	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-23 08:52:11	DMcNulla	Can people on kondoot hear the questions?
2012-03-23 08:52:23	<--	bluegrasscoder (u5944@gateway/web/irccloud.com/x-dstzhpdqhiurwfdq) has left #watir
2012-03-23 08:52:37	<--	bluegrasscoder_ (u5944@gateway/web/irccloud.com/x-egbfybeyxxuvdeeb) has left #watir
2012-03-23 08:53:09	<--	bluegrasscoder__ (u5944@gateway/web/irccloud.com/x-noyfglpvdzpiubaa) has left #watir
2012-03-23 09:00:04	-->	bluegrasscoder (u5944@gateway/web/irccloud.com/x-ajzkmflduocjfwhl) has joined #watir
2012-03-23 09:34:47	bret	Please link to your presentations here.
2012-03-23 09:34:49	bret	https://github.com/watir/watir-bazaar/wiki/Presentations
2012-03-23 09:34:56	bret	I just added Alan's presentation
2012-03-23 09:35:52	-->	hmcgowan (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has joined #watir
2012-03-23 09:36:39	bret	just added hugh's
2012-03-23 09:40:01	<--	hmcgowan (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 09:41:55	-->	hmcgowan (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has joined #watir
2012-03-23 09:42:17	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-23 09:52:25	-->	watirwd (~watirwd@sh1-ext.rs.github.com) has joined #watir
2012-03-23 09:52:25	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/j5K3AA
2012-03-23 09:52:25	watirwd	[watir-webdriver/master] Prepare for translating to CSS over XPath (#37). - Jari Bakken
2012-03-23 09:52:25	<--	watirwd (~watirwd@sh1-ext.rs.github.com) has left #watir
2012-03-23 09:56:12	hmcgowan	Lol That Rocks, Jari
2012-03-23 09:59:28	-->	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has joined #watir
2012-03-23 09:59:28	travis-ci	[travis-ci] watir/watir-webdriver#62 (master - 73a10dd : Jari Bakken): The build passed.
2012-03-23 09:59:28	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/069470f...73a10dd
2012-03-23 09:59:28	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/931465
2012-03-23 09:59:28	<--	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has left #watir
2012-03-23 09:59:36	<--	avida (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 10:00:26	<--	hmcgowan (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 10:19:37	-->	andrewvida (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has joined #watir
2012-03-23 10:38:46	<--	DMcNulla (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 10:51:36	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-23 10:54:23	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-23 10:56:01	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-03-23 11:02:04	<--	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has quit (Remote host closed the connection)
2012-03-23 11:04:36	<--	bramha (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 11:05:26	<--	andrewvida (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 11:05:27	<--	bret (18ad4e3e@gateway/web/freenode/ip.24.173.78.62) has quit (Ping timeout: 245 seconds)
2012-03-23 11:34:59	-->	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has joined #watir
2012-03-23 12:30:04	-->	watirwd (~watirwd@sh1-ext.rs.github.com) has joined #watir
2012-03-23 12:30:04	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/IzGTOQ
2012-03-23 12:30:04	watirwd	[watir-webdriver/master] Quick and dirty CSS support. Closes #37. - Jari Bakken
2012-03-23 12:30:04	<--	watirwd (~watirwd@sh1-ext.rs.github.com) has left #watir
2012-03-23 12:37:43	-->	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has joined #watir
2012-03-23 12:37:43	travis-ci	[travis-ci] watir/watir-webdriver#63 (master - ccf2d72 : Jari Bakken): The build passed.
2012-03-23 12:37:43	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/73a10dd...ccf2d72
2012-03-23 12:37:43	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/932992
2012-03-23 12:37:43	<--	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has left #watir
2012-03-23 12:40:06	<--	gheegh (~gheegh@pool-173-66-230-153.washdc.fios.verizon.net) has quit (Quit: is out)
2012-03-23 12:45:04	-->	watirwd (~watirwd@sh1-ext.rs.github.com) has joined #watir
2012-03-23 12:45:04	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/Ol5muA
2012-03-23 12:45:04	watirwd	[watir-webdriver/master] Bump version to 0.5.4. - Jari Bakken
2012-03-23 12:45:04	<--	watirwd (~watirwd@sh1-ext.rs.github.com) has left #watir
2012-03-23 12:49:56	<--	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has quit (Remote host closed the connection)
2012-03-23 12:51:05	-->	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has joined #watir
2012-03-23 12:52:22	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-03-23 12:52:22	watirwd	[watir-webdriver] jarib pushed 2 new commits to master: http://git.io/KeHEdA
2012-03-23 12:52:22	watirwd	[watir-webdriver/master] Remove the post-install message. - Jari Bakken
2012-03-23 12:52:22	watirwd	[watir-webdriver/master] Remove deprecated API: Browser#clear_cookies. Use Browser#cookies instead. - Jari Bakken
2012-03-23 12:52:22	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-03-23 12:54:05	-->	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has joined #watir
2012-03-23 12:54:06	travis-ci	[travis-ci] watir/watir-webdriver#64 (master - 5b90ec3 : Jari Bakken): The build passed.
2012-03-23 12:54:06	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/ccf2d72...5b90ec3
2012-03-23 12:54:06	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/933122
2012-03-23 12:54:06	<--	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has left #watir
2012-03-23 12:56:32	<--	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has quit (Remote host closed the connection)
2012-03-23 13:00:12	-->	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has joined #watir
2012-03-23 13:00:12	travis-ci	[travis-ci] watir/watir-webdriver#65 (master - 9228676 : Jari Bakken): The build passed.
2012-03-23 13:00:12	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/5b90ec3...9228676
2012-03-23 13:00:12	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/933232
2012-03-23 13:00:12	<--	travis-ci (~travis-ci@ec2-184-72-163-121.compute-1.amazonaws.com) has left #watir
2012-03-23 13:00:39	zeljko	link to the page with list of the tools from my lighting talk https://github.com/watir/watir-bazaar/wiki/Tools
2012-03-23 14:54:21	-->	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has joined #watir
2012-03-23 15:28:43	-->	aikhelis (d8fb7086@gateway/web/freenode/ip.216.251.112.134) has joined #watir
2012-03-23 15:28:53	aikhelis	hi everyone
2012-03-23 15:33:21	<--	aikhelis (d8fb7086@gateway/web/freenode/ip.216.251.112.134) has quit (Ping timeout: 245 seconds)
2012-03-23 15:46:43	-->	aikhelis (d8fb7086@gateway/web/freenode/ip.216.251.112.134) has joined #watir
2012-03-23 15:51:58	jarib	hi aikhelis
2012-03-23 16:01:51	<--	cheezy (~cheezy@rrcs-24-173-78-62.sw.biz.rr.com) has quit (Remote host closed the connection)
2012-03-23 16:14:11	<--	aikhelis (d8fb7086@gateway/web/freenode/ip.216.251.112.134) has quit (Ping timeout: 245 seconds)
2012-03-23 18:28:00		irc: disconnected from server
2012-03-23 23:52:21	-->	benbeltran (~benbeltra@200.76.90.239) has joined #watir
2012-03-23 23:52:23	--	Nicks #watir: [benbeltran bluegrasscoder djinni fellu jarib jarm0 Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-03-23 23:52:23	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-03-23 23:52:24	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-25 01:35:32		irc: disconnected from server
2012-03-26 00:40:17	-->	benbeltran (~benbeltra@200.76.90.254) has joined #watir
2012-03-26 00:40:17	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0p Remco s0ber wapiflapi WOFall zeljko]
2012-03-26 00:40:17	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-03-26 00:40:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-26 01:01:25	-->	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has joined #watir
2012-03-26 01:09:02		irc: disconnected from server
2012-03-26 09:13:21	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-26 09:13:22	--	Nicks #watir: [benbeltran djinni fabrice31 fellu hemanth jarib jarm0p Remco s0ber volter wapiflapi WOFall zeljko]
2012-03-26 09:13:22	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-03-26 09:13:29	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-26 09:55:57	-->	ImthePC (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has joined #watir
2012-03-26 09:59:17	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Remote host closed the connection)
2012-03-26 10:48:13	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-26 10:51:14	<--	cwang (~cwang@173.247.202.186) has quit (Remote host closed the connection)
2012-03-26 10:58:35	ImthePC	zeljko: Have you kicked anyone's ass since your presentation?
2012-03-26 11:00:14	ImthePC	jarib: ping
2012-03-26 11:37:44	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-26 11:42:11	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-26 13:08:13	ImthePC	have people seen speedups using ie with the prefer_css set to true?
2012-03-26 13:25:05	<--	ImthePC (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has quit (Quit: Page closed)
2012-03-26 14:09:00	-->	jibay (~jibay@ANancy-155-1-17-42.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-26 18:39:40		irc: disconnected from server
2012-03-26 18:39:57	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-26 18:39:57	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fabrice31 fellu hemanth jarib jarm0p jibay Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-03-26 18:39:57	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-03-26 20:19:14		irc: disconnected from server
2012-03-26 20:20:36	-->	benbeltran1 (~benbeltra@200.76.90.228) has joined #watir
2012-03-26 20:20:36	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu hemanth jarib jarm0p Remco s0ber wapiflapi WOFall zeljko]
2012-03-26 20:20:36	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-03-26 20:20:42	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-26 20:49:40		irc: disconnected from server
2012-03-27 09:18:56	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-27 09:18:57	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu hemanth ImthePC jarib jarm0p rcrossan Remco s0ber wapiflapi WOFall zeljko]
2012-03-27 09:18:57	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-27 09:19:03	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-27 09:29:16	fabrice31	rcrossan : I use cucumber and I do that.
2012-03-27 09:47:31	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-27 09:47:31	--	Nicks #watir: [benbeltran djinni fabrice31 fellu hemanth ImthePC jarib jarm0p orko rcrossan Remco s0ber wapiflapi WOFall zeljko]
2012-03-27 09:47:31	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-03-27 09:47:31	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-27 10:42:21	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-27 11:49:23	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-27 12:21:44	orko	How would you test layout stuff?
2012-03-28 09:53:36	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-28 09:53:36	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh hemanth ImthePC jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-03-28 09:53:36	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-28 09:53:36	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-28 09:53:47	<--	ImthePC (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has quit (Ping timeout: 245 seconds)
2012-03-28 10:32:21	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-28 12:30:29	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-28 13:01:50	<--	jibay (~jibay@ANancy-155-1-17-42.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-03-28 13:15:38	-->	jibay (~jibay@ANancy-155-1-4-63.w90-6.abo.wanadoo.fr) has joined #watir
2012-03-28 13:49:29	-->	git (~git@sh1-ext.rs.github.com) has joined #watir
2012-03-28 13:49:29	git	[watir-classic] hmcgowan pushed 9 new commits to master: http://git.io/0bQNnQ
2012-03-28 13:49:29	git	[watir-classic/master] update for watir-classic - Hugh McGowan
2012-03-28 13:49:29	git	[watir-classic/master] remove firewatir from project - Hugh McGowan
2012-03-28 13:49:29	git	[watir-classic/master] move common-watir libs into watir - Hugh McGowan
2012-03-28 13:49:29	<--	git (~git@sh1-ext.rs.github.com) has left #watir
2012-03-28 15:03:47	-->	marekj (~mjastrzeb@209.163.168.194) has joined #watir
2012-03-28 15:50:31	-->	SeanFallon (~smuxi@66.195.97.65) has joined #watir
2012-03-28 15:50:53	<--	SeanFallon (~smuxi@66.195.97.65) has left #watir
2012-03-28 17:45:58		irc: disconnected from server
2012-03-28 17:47:32	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-28 17:47:32	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fabrice31 fellu gheegh hemanth jarib jibay marekj Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-03-28 17:47:32	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-03-28 17:47:32	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-28 17:48:04	-->	s0ber_ (~s0ber@114-36-231-220.dynamic.hinet.net) has joined #watir
2012-03-28 17:48:47	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 252 seconds)
2012-03-28 17:50:14	<--	s0ber (~s0ber@114-36-229-36.dynamic.hinet.net) has quit (Ping timeout: 248 seconds)
2012-03-28 17:50:24	--	s0ber_ is now known as s0ber
2012-03-28 18:17:40	<--	jibay (~jibay@ANancy-155-1-4-63.w90-6.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-03-28 18:43:31	<--	cwang (~cwang@173.247.202.186) has quit (Ping timeout: 260 seconds)
2012-03-28 19:36:25		irc: disconnected from server
2012-03-28 22:45:45	-->	benbeltran1 (~benbeltra@200.76.90.223) has joined #watir
2012-03-28 22:45:46	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh hemanth jarib marekj Remco s0ber wapiflapi WOFall zeljko]
2012-03-28 22:45:46	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-03-28 22:45:52	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-29 08:59:10		irc: disconnected from server
2012-03-29 08:59:27	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-29 08:59:27	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh hemanth ImthePC jarib jibay kala marekj Remco s0ber volter wapiflapi WOFall zeljko]
2012-03-29 08:59:27	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-03-29 08:59:33	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-29 09:59:12	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-03-29 10:03:05	rcrossan	I have tried a few output loggers. Could anyone recommend which direction I could try for logging everything my script does without having to assign each line (as I want everything to show in log). I was using ci/reporter for test unit loader which was working great, but doesn't appear to work when I want to include win32/screenshot
2012-03-29 10:14:26	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-03-29 10:18:31	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-29 10:42:07	<--	jibay (~jibay@ANancy-155-1-4-63.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 264 seconds)
2012-03-29 10:54:49	-->	jibay (~jibay@ANancy-155-1-56-232.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-29 11:20:35	-->	jibay_ (~jibay@ANancy-155-1-51-74.w90-13.abo.wanadoo.fr) has joined #watir
2012-03-29 11:21:43	<--	jibay (~jibay@ANancy-155-1-56-232.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 245 seconds)
2012-03-29 11:33:01	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-29 12:15:33	<--	jibay_ (~jibay@ANancy-155-1-51-74.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-03-29 12:28:38	-->	jibay_ (~jibay@ANancy-155-1-11-145.w90-6.abo.wanadoo.fr) has joined #watir
2012-03-29 13:25:27	--	You are now known as benbeltran
2012-03-29 14:30:54	marekj	rcrossan: take a look ag 'logging' gem. Are you running your tests in Rspec or Cucumber harness?
2012-03-29 16:00:09	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Quit: ChatZilla 0.9.88.1 [Firefox 10.0.2/20120215223356])
2012-03-29 17:56:45	<--	jibay_ (~jibay@ANancy-155-1-11-145.w90-6.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-03-29 18:38:45		irc: disconnected from server
2012-03-29 18:39:03	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-29 18:39:03	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fabrice31 fellu gheegh hemanth ImthePC jarib kala marekj Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-03-29 18:39:03	--	Channel #watir: 18 nicks (0 ops, 0 halfops, 0 voices, 18 normals)
2012-03-29 18:39:09	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-29 18:41:49	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-29 18:56:16	<--	cwang (~cwang@173.247.202.186) has quit (Ping timeout: 252 seconds)
2012-03-29 19:03:33		irc: disconnected from server
2012-03-30 08:57:45	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-30 08:57:45	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh hemanth jarib kala marekj Remco s0ber wapiflapi WOFall zeljko]
2012-03-30 08:57:45	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-30 08:57:52	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-30 09:25:48	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-03-30 09:25:48	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh hemanth jarib kala marekj Remco s0ber wapiflapi WOFall zeljko]
2012-03-30 09:25:48	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-30 09:25:48	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-30 09:36:34	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-03-30 10:21:00	<--	marekj (~mjastrzeb@209.163.168.194) has quit (Read error: Connection reset by peer)
2012-03-30 10:21:39	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-03-30 10:26:23	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-03-30 11:00:47	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-03-30 14:21:47	<--	gheegh (~gheegh@pool-173-66-230-153.washdc.fios.verizon.net) has quit (Quit: is out)
2012-03-30 14:53:30	-->	s0ber_ (~s0ber@114-36-235-210.dynamic.hinet.net) has joined #watir
2012-03-30 14:55:08	<--	s0ber (~s0ber@114-36-231-220.dynamic.hinet.net) has quit (Ping timeout: 240 seconds)
2012-03-30 14:55:14	--	s0ber_ is now known as s0ber
2012-03-30 16:31:55	<--	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has quit (Quit: Ex-Chat)
2012-03-30 17:10:54	<--	wapiflapi (wapiflapi@darksaber.tk) has quit (Ping timeout: 260 seconds)
2012-03-30 17:13:16	-->	wapiflapi (~Wapi@darksaber.tk) has joined #watir
2012-03-30 18:20:36		irc: disconnected from server
2012-03-30 18:21:56	-->	benbeltran1 (~benbeltra@187.163.28.116) has joined #watir
2012-03-30 18:21:56	--	Nicks #watir: [benbeltran benbeltran1 cwang djinni fellu hemanth jarib kala Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-03-30 18:21:56	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-03-30 18:22:03	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-30 18:23:40	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-03-30 20:24:35		irc: disconnected from server
2012-03-30 20:24:57	-->	benbeltran1 (~benbeltra@200.76.90.237) has joined #watir
2012-03-30 20:24:57	--	Nicks #watir: [benbeltran1 djinni fellu hemanth jarib kala Remco s0ber wapiflapi WOFall zeljko]
2012-03-30 20:24:57	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-03-30 20:25:02	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-03-30 23:19:49		irc: disconnected from server
2012-04-01 21:14:13	-->	benbeltran1 (~benbeltra@200.76.90.177) has joined #watir
2012-04-01 21:14:13	--	Nicks #watir: [benbeltran1 cheezy djinni fellu hemanth jarib kala Remco s0ber wapiflapi WOFall zeljko]
2012-04-01 21:14:13	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-04-01 21:14:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-02 09:18:38	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-04-02 09:18:39	--	Nicks #watir: [benbeltran cheezy CottonHill djinni fabrice31 fellu hemanth jarib kala Remco s0ber wapiflapi WOFall zeljko]
2012-04-02 09:18:39	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-02 09:18:39	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-02 11:18:10	<--	CottonHill (~enroxorz@unaffiliated/enroxorz) has quit (Read error: Connection reset by peer)
2012-04-02 11:20:13	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-04-02 11:29:39	-->	jibay (~jibay@ANancy-155-1-11-145.w90-6.abo.wanadoo.fr) has joined #watir
2012-04-02 11:40:11	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-04-02 11:46:38	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-04-02 11:47:44	rcrossan	using watir 3.0 R3 and my select list is no longer working
2012-04-02 11:47:48	rcrossan	know issue?
2012-04-02 11:47:56	rcrossan	I couldn't find anything in jira
2012-04-02 12:14:30	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-02 12:25:44	<--	cheezy (~cheezy@72.42.73.4) has quit (Remote host closed the connection)
2012-04-02 12:48:31	rcrossan	I figured it out, not sure how it was working before but had to go from ie.select_list(:name, 'pricing_xtn_type_no').select_value('pricing_type_no,20') to ie.form(:id, 'options-for-RTK::VOD::Reports::ProviderComparison').select_list(:name, 'pricing_xtn_type_no').select('TOD')
2012-04-02 13:22:40	-->	ImthePC (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has joined #watir
2012-04-02 13:45:07	-->	uva (bno@114-36-234-184.dynamic.hinet.net) has joined #watir
2012-04-02 13:46:43	<--	uva (bno@114-36-234-184.dynamic.hinet.net) has quit (Client Quit)
2012-04-02 13:46:53	-->	uva (bno@114-36-234-184.dynamic.hinet.net) has joined #watir
2012-04-02 13:47:05	<--	uva (bno@114-36-234-184.dynamic.hinet.net) has quit (Remote host closed the connection)
2012-04-02 14:50:51	<--	ImthePC (cd8bc00a@gateway/web/freenode/ip.205.139.192.10) has quit (Ping timeout: 245 seconds)
2012-04-02 14:58:13	<--	cwang (~cwang@173.247.202.186) has quit (Remote host closed the connection)
2012-04-02 15:28:11	-->	wapiflap1 (wapiflapi@darksaber.tk) has joined #watir
2012-04-02 15:30:57	<--	zeljko (u4950@gateway/web/irccloud.com/x-ueucradeyivaqarl) has quit (Ping timeout: 260 seconds)
2012-04-02 15:30:58	<--	jibay (~jibay@ANancy-155-1-11-145.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 260 seconds)
2012-04-02 15:30:58	<--	wapiflapi (~Wapi@darksaber.tk) has quit (Ping timeout: 260 seconds)
2012-04-02 15:31:43	-->	zeljko (u4950@gateway/web/irccloud.com/x-ezzdmtvmckdestuh) has joined #watir
2012-04-02 15:31:46	-->	jibay (~jibay@ANancy-155-1-11-145.w90-6.abo.wanadoo.fr) has joined #watir
2012-04-02 16:03:28	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Quit: ChatZilla 0.9.88.1 [Firefox 11.0/20120312181643])
2012-04-02 20:54:41		irc: disconnected from server
2012-04-03 09:20:40	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-04-03 09:20:40	--	Nicks #watir: [benbeltran djinni fabrice31 fellu hemanth jarib kala Remco s0ber volter wapiflap1 WOFall zeljko]
2012-04-03 09:20:40	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-03 09:20:46	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-03 10:00:19	-->	enroxorz (~enroxorz@unaffiliated/enroxorz) has joined #watir
2012-04-03 10:08:58	-->	delaf (d44adcbc@gateway/web/freenode/ip.212.74.220.188) has joined #watir
2012-04-03 10:25:38	delaf	hi. Why "find_all" works so slow?
2012-04-03 10:45:57	<--	delaf (d44adcbc@gateway/web/freenode/ip.212.74.220.188) has quit (Quit: Page closed)
2012-04-03 10:46:42	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-04-03 13:11:26	--	enroxorz is now known as I-Sell-Propane
2012-04-03 13:19:46	<--	I-Sell-Propane (~enroxorz@unaffiliated/enroxorz) has left #watir ("Leaving")
2012-04-03 16:02:03	<--	benbeltran (~benbeltra@187.163.28.116) has quit (Ping timeout: 244 seconds)
2012-04-03 16:02:03		irc: disconnected from server
2012-04-03 16:02:20	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-04-03 16:02:20	--	Nicks #watir: [benbeltran djinni fabrice31 fellu hemanth jarib kala Remco s0ber wapiflap1 WOFall zeljko]
2012-04-03 16:02:20	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-04-03 16:02:26	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-03 16:16:06	-->	jibay (~jibay@ANancy-652-1-380-122.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-04 09:10:21	-->	benbeltran (~benbeltra@187.163.28.116) has joined #watir
2012-04-04 09:10:21	--	Nicks #watir: [benbeltran djinni fabrice31 fellu hemanth jarib jibay kala Remco s0ber volter wapiflap1 WOFall zeljko]
2012-04-04 09:10:21	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-04 09:10:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-04 11:35:48	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-04 13:04:52	-->	voodoofish430 (~mtorres@adsl-99-146-23-197.dsl.lsan03.sbcglobal.net) has joined #watir
2012-04-04 13:05:37	<--	voodoofish430 (~mtorres@adsl-99-146-23-197.dsl.lsan03.sbcglobal.net) has quit (Client Quit)
2012-04-04 13:14:06	-->	henriquev (~henvic@187.78.94.48) has joined #watir
2012-04-04 13:14:14	<--	henriquev (~henvic@187.78.94.48) has left #watir
2012-04-04 18:42:11		irc: disconnected from server
2012-04-04 18:42:31	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-04 18:42:31	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu hemanth jarib jibay kala Remco s0ber wapiflap1 WOFall zeljko]
2012-04-04 18:42:31	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-04 22:27:39		irc: disconnected from server
2012-04-05 14:38:35	-->	benbeltran1 (~benbeltra@200.76.90.200) has joined #watir
2012-04-05 14:38:35	--	Nicks #watir: [benbeltran1 cheezy djinni fabrice31 fellu hemanth jarib jibay kala Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-05 14:38:35	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-05 14:38:42	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-05 15:50:38	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-05 16:31:15		irc: disconnected from server
2012-04-09 09:07:31	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-09 09:07:31	--	Nicks #watir: [benbeltran1 djinni fellu hemanth jarib jibay marekj Remco s0ber wapiflapi WOFall zeljko]
2012-04-09 09:07:31	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-04-09 09:07:38	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-09 09:15:59	--	You are now known as benbeltran
2012-04-09 12:31:16	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-09 14:05:34	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Read error: Connection reset by peer)
2012-04-09 14:07:11	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-09 15:32:42	<--	s0ber (~s0ber@114-36-228-106.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-04-09 15:34:40	-->	s0ber (~s0ber@114-36-245-126.dynamic.hinet.net) has joined #watir
2012-04-09 15:57:21	-->	marekj1 (~mjastrzeb@209.163.168.194) has joined #watir
2012-04-09 15:58:18	-->	marekj2 (~mjastrzeb@209.163.168.194) has joined #watir
2012-04-09 15:59:44	<--	marekj (~mjastrzeb@209.163.168.194) has quit (Ping timeout: 245 seconds)
2012-04-09 16:01:24	<--	marekj1 (~mjastrzeb@209.163.168.194) has quit (Ping timeout: 245 seconds)
2012-04-09 16:48:01	<--	marekj2 (~mjastrzeb@209.163.168.194) has left #watir
2012-04-09 17:52:20	-->	voodoofish4301 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-04-09 17:54:27	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Ping timeout: 246 seconds)
2012-04-09 18:52:49		irc: disconnected from server
2012-04-09 18:53:06	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-09 18:53:06	--	Nicks #watir: [benbeltran benbeltran1 djinni fellu hemanth jarib jibay Remco s0ber voodoofish4301 wapiflapi WOFall zeljko]
2012-04-09 18:53:06	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-09 18:53:12	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-09 19:52:49		irc: disconnected from server
2012-04-10 09:11:33	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-10 09:11:33	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu hemanth jarib jibay__ Remco s0ber volter wapiflapi WOFall zeljko]
2012-04-10 09:11:33	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-10 09:11:41	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-10 10:11:45	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-10 10:59:40	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-10 11:02:58	--	You are now known as benbeltran
2012-04-10 11:03:00	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-10 11:04:35	dougnoel	Howdy folks.  I am trying to verify the text of an <acronym> tag.  I was able to do it with the element tag like so: @browser.element(:id => /expense_code(.*)/).text
2012-04-10 11:05:49	dougnoel	But it takes about a minute to resolve.  I'm QA and not a developer.  The developers have said they have plans to remove this tag.  In the mean time, is there a faster way I can deal with this tag?  As there is no acronym object.  FRom looking at the Watir code, it seems like the tag objects are automatically created from the HTML5 spec.
2012-04-10 11:22:12	-->	enroxorz (~enroxorz@65-117-22-130.dia.static.qwest.net) has joined #watir
2012-04-10 11:22:12	<--	enroxorz (~enroxorz@65-117-22-130.dia.static.qwest.net) has quit (Changing host)
2012-04-10 11:22:12	-->	enroxorz (~enroxorz@unaffiliated/enroxorz) has joined #watir
2012-04-10 11:39:39	-->	cwang (~cwang@173.247.202.186) has joined #watir
2012-04-10 12:50:06	-->	jibay_ (~jibay@ANancy-155-1-9-110.w90-6.abo.wanadoo.fr) has joined #watir
2012-04-10 12:50:09	<--	jibay__ (~jibay@ANancy-155-1-43-73.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 245 seconds)
2012-04-10 13:27:40	<--	jibay_ (~jibay@ANancy-155-1-9-110.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 244 seconds)
2012-04-10 13:40:51	-->	jibay_ (~jibay@ANancy-155-1-12-243.w90-6.abo.wanadoo.fr) has joined #watir
2012-04-10 14:15:05	--	enroxorz is now known as HermanCainTrain
2012-04-10 14:17:00	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 246 seconds)
2012-04-10 14:17:34	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-10 14:27:25	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 276 seconds)
2012-04-10 14:27:59	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-10 14:32:20	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 260 seconds)
2012-04-10 15:08:31	--	HermanCainTrain is now known as enroxorz
2012-04-10 16:06:30	<--	enroxorz (~enroxorz@unaffiliated/enroxorz) has quit (Quit: Leaving)
2012-04-10 18:40:46	-->	dougnoel (~IceChat77@c-67-166-163-73.hsd1.va.comcast.net) has joined #watir
2012-04-10 19:34:45		irc: disconnected from server
2012-04-11 09:15:14	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-11 09:15:15	--	Nicks #watir: [benbeltran Carpetsmoker djinni dougnoel easonhan fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-04-11 09:15:15	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-11 09:15:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-11 10:01:41	-->	enroxorz (~enroxorz@65-117-22-130.dia.static.qwest.net) has joined #watir
2012-04-11 10:01:41	<--	enroxorz (~enroxorz@65-117-22-130.dia.static.qwest.net) has quit (Changing host)
2012-04-11 10:01:41	-->	enroxorz (~enroxorz@unaffiliated/enroxorz) has joined #watir
2012-04-11 10:19:33		irc: disconnected from server
2012-04-11 10:30:13	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-11 10:30:13	--	Nicks #watir: [benbeltran Carpetsmoker djinni dougnoel easonhan enroxorz fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-04-11 10:30:13	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-04-11 10:30:19	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-11 11:00:11		irc: disconnected from server
2012-04-11 11:00:28	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-11 11:00:28	--	Nicks #watir: [benbeltran Carpetsmoker djinni dougnoel easonhan enroxorz fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-04-11 11:00:28	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-04-11 11:00:28	--	Notice(zelazny.freenode.net): [freenode-info] channel flooding and no channel staff around to help? Please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-04-11 11:00:35	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-11 11:23:07	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-11 11:23:07	--	Nicks #watir: [benbeltran Carpetsmoker djinni dougnoel easonhan enroxorz fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-04-11 11:23:07	--	Channel #watir: 17 nicks (0 ops, 0 halfops, 0 voices, 17 normals)
2012-04-11 11:23:08	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-11 11:51:37	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Read error: Connection reset by peer)
2012-04-11 11:52:12	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-11 12:16:46	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-11 13:45:22	dougnoel	jarib, I combined your suggestions and someone else's from Stack Overflow and came up with this:
2012-04-11 13:45:30	dougnoel	@browser.element(:xpath => "//acronym[contains(@class, \'editable select fillwith:exp_codes default:#{expense_code}\')]").text
2012-04-11 13:45:40	dougnoel	It's much faster.  Thanks :)
2012-04-11 13:46:57	jarib	oh
2012-04-11 13:46:57	jarib	hm
2012-04-11 13:47:17	dougnoel	Thoughts?
2012-04-11 13:47:25	jarib	if default:xxx is a unique class on the page, you could also do .element(:tag_name => "acronym", :class => "default:#{expense_code}")
2012-04-11 13:47:38	jarib	otherwise that xpath looks ok
2012-04-11 13:47:50	dougnoel	I tried that, and I got an error with the tag_name
2012-04-11 13:47:57	dougnoel	I think.
2012-04-11 13:48:01	dougnoel	Let me try that again though.
2012-04-11 13:49:03	dougnoel	I tried this earlier, and it couldn't find it: @browser.element(:class, "editable select fillwith:exp_codes default:#{expense_code}").text
2012-04-11 13:49:26	jarib	that should work
2012-04-11 13:49:37	dougnoel	That's what I thought
2012-04-11 13:49:44	jarib	or even just "default:#{expense_code}", if that's unique
2012-04-11 13:50:03	jarib	it shouldn't need the full class attribute
2012-04-11 13:50:09	dougnoel	Oh really?
2012-04-11 13:50:10	jarib	(assuming you're on a recent version of watir-webdriver)
2012-04-11 13:50:11	dougnoel	ok
2012-04-11 13:50:19	jarib	no, :class is special in that regard.
2012-04-11 13:50:33	jarib	it will understand the space delimited list of class names.
2012-04-11 13:50:41	dougnoel	I'm using 0.5.3
2012-04-11 13:50:47	dougnoel	Here's my post on SO: http://stackoverflow.com/questions/10093114/how-can-i-find-an-acronym-tag-with-watir-webdriver-without-taking-a-huge-perfo
2012-04-11 13:52:22	jarib	what comment indicates the code isn't generated from the spec?
2012-04-11 13:52:45	dougnoel	I will go find it
2012-04-11 13:53:19	dougnoel	It was near the top of element.rb I believe
2012-04-11 13:53:24	jarib	also, <acronym> isn't in the spec
2012-04-11 13:53:41	dougnoel	Yeah I know it isn't.  I looked it up.
2012-04-11 13:53:43	jarib	it's supposed to be <abbr>
2012-04-11 13:54:05	jarib	ah, i see what comment you're thinking of
2012-04-11 13:54:11	jarib	it's just badly phrased
2012-04-11 13:54:12	dougnoel	Ah ok
2012-04-11 13:55:38	dougnoel	So this ran, but took longer than the xpath version by about 7-8 seconds.  Not really significant with one run through, but...
2012-04-11 13:55:39	dougnoel	@browser.element(:tag_name => "acronym", :class => "default:#{expense_code}").text
2012-04-11 13:56:19	-->	watirwd (~watirwd@sh1-ext.rs.github.com) has joined #watir
2012-04-11 13:56:19	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/YpIWeA
2012-04-11 13:56:19	watirwd	[watir-webdriver/master] Clarify comment. We still generate element classes from the spec. - Jari Bakken
2012-04-11 13:56:19	<--	watirwd (~watirwd@sh1-ext.rs.github.com) has left #watir
2012-04-11 13:56:55	jarib	well, a single run can be impacted by a lot of external factors
2012-04-11 13:57:05	jarib	are you benchmarking it properly?
2012-04-11 13:57:18	dougnoel	Oh hell no. :)
2012-04-11 13:57:19	jarib	i.e. not benchmarking launching the browser, navigating to the page etc?
2012-04-11 13:57:36	jarib	i'd be very surprised if it was significantly slower
2012-04-11 13:57:53	dougnoel	Nah I'm just going by the total cucumber run.  I don't have any benchmarking set up.  Any suggestions on what I should use for that?
2012-04-11 13:58:20	jarib	you'd need to write a custom script if you want to benchmark one selector vs another
2012-04-11 13:58:31	jarib	there's no tool to help with that that i'm aware of
2012-04-11 13:58:37	dougnoel	ok
2012-04-11 13:58:45	dougnoel	I could drop in some timestamps
2012-04-11 13:59:02	dougnoel	I saw something soemone wrote that added a timestamp to each step
2012-04-11 13:59:30	dougnoel	I'd wanna run it like 30 times to get a good number.
2012-04-11 14:00:43	jarib	30.times { browser.element(...).exists? }
2012-04-11 14:01:23	dougnoel	Ooh yeah....I forgot about that.  I'm a QA guy by trade. :D  Been a few years since I've used Ruby.
2012-04-11 14:01:59	dougnoel	I just ran the "faster" one though and got a similar slower time within half a second, so I think you're right that the performance is the same.
2012-04-11 14:05:27	-->	travis-ci (~travis-ci@ec2-107-20-12-254.compute-1.amazonaws.com) has joined #watir
2012-04-11 14:05:28	travis-ci	[travis-ci] watir/watir-webdriver#67 (master - e04ed7f : Jari Bakken): The build passed.
2012-04-11 14:05:28	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/18c35b4...e04ed7f
2012-04-11 14:05:28	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1068591
2012-04-11 14:05:28	<--	travis-ci (~travis-ci@ec2-107-20-12-254.compute-1.amazonaws.com) has left #watir
2012-04-11 14:44:18	-->	watirspec (~watirspec@sh1-ext.rs.github.com) has joined #watir
2012-04-11 14:44:18	watirspec	[watirspec] jarmo pushed 2 new commits to master: http://git.io/ASzjHw
2012-04-11 14:44:19	watirspec	[watirspec/master] add spec for Browser#execute_script running JS inside of an anonymous function - Jarmo Pertman
2012-04-11 14:44:19	watirspec	[watirspec/master] Merge branch 'master' of github.com:watir/watirspec - Jarmo Pertman
2012-04-11 14:44:20	<--	watirspec (~watirspec@sh1-ext.rs.github.com) has left #watir
2012-04-11 14:47:57	-->	git (~git@sh1-ext.rs.github.com) has joined #watir
2012-04-11 14:47:57	git	[watir-classic] jarmo pushed 4 new commits to master: http://git.io/jqeFsA
2012-04-11 14:47:57	git	[watir-classic/master] currentStyle.cssText doesn't work as expected on IE9, reverting to regular .style - Jarmo Pertman
2012-04-11 14:47:57	git	[watir-classic/master] make drag and drop work for IE9 too - Jarmo Pertman
2012-04-11 14:47:57	git	[watir-classic/master] #execute_script runs JavaScript in an anonymous function, make sure to use "return" statement if value is needed back in Ruby - Jarmo Pertman
2012-04-11 14:47:57	<--	git (~git@sh1-ext.rs.github.com) has left #watir
2012-04-11 15:42:57	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Quit: Life without danger is a waste of oxygen)
2012-04-11 15:43:14	-->	watirspec (~watirspec@sh2.rs.github.com) has joined #watir
2012-04-11 15:43:14	watirspec	[watirspec] jarmo pushed 1 new commit to master: http://git.io/7aNZ1Q
2012-04-11 15:43:15	watirspec	[watirspec/master] add guards for Watir IE9 - Jarmo Pertman
2012-04-11 15:43:15	<--	watirspec (~watirspec@sh2.rs.github.com) has left #watir
2012-04-11 15:45:48	-->	git (~git@sh1-ext.rs.github.com) has joined #watir
2012-04-11 15:45:48	git	[watir-classic] jarmo pushed 3 new commits to master: http://git.io/5WUsKg
2012-04-11 15:45:48	git	[watir-classic/master] Browser#status returns an empty string if status bar is disabled in IE9 - Jarmo Pertman
2012-04-11 15:45:48	git	[watir-classic/master] check if html is equal too in Window#current? and Window#== - Jarmo Pertman
2012-04-11 15:45:48	git	[watir-classic/master] bump watirspec - Jarmo Pertman
2012-04-11 15:45:48	<--	git (~git@sh1-ext.rs.github.com) has left #watir
2012-04-11 16:06:56	<--	enroxorz (~enroxorz@unaffiliated/enroxorz) has quit (Read error: Connection reset by peer)
2012-04-11 16:22:20	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-04-11 16:59:18	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-11 17:51:02		irc: disconnected from server
2012-04-11 17:51:22	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-11 17:51:22	--	Nicks #watir: [benbeltran Carpetsmoker djinni easonhan fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-11 17:51:22	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-11 17:51:28	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-11 18:09:40		irc: disconnected from server
2012-04-12 09:09:08	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-12 09:09:09	--	Nicks #watir: [benbeltran Carpetsmoker cheezy djinni easonhan fabrice31 fellu hemanth jarib jibay__ Remco s0ber wapiflapi WOFall zeljko]
2012-04-12 09:09:09	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-12 09:09:14	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-12 10:32:37	<--	jibay__ (~jibay@ANancy-155-1-51-221.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-04-12 10:35:16	-->	jibay__ (~jibay@ANancy-155-1-29-111.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-12 11:07:22	<--	jibay__ (~jibay@ANancy-155-1-29-111.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 276 seconds)
2012-04-12 11:11:27	-->	jibay__ (~jibay@ANancy-155-1-45-44.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-12 11:15:03	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-12 11:37:30	-->	watirspec (~watirspec@sh2.rs.github.com) has joined #watir
2012-04-12 11:37:30	watirspec	[watirspec] jarmo pushed 1 new commit to master: http://git.io/UF73Jw
2012-04-12 11:37:31	watirspec	[watirspec/master] #execute_script returns nil instead of 'undefined' - Jarmo Pertman
2012-04-12 11:37:31	<--	watirspec (~watirspec@sh2.rs.github.com) has left #watir
2012-04-12 11:38:31	-->	git (~git@sh1-ext.rs.github.com) has joined #watir
2012-04-12 11:38:31	git	[watir-classic] jarmo pushed 1 new commit to master: http://git.io/RkrVUg
2012-04-12 11:38:31	git	[watir-classic/master] #execute_script returns nil instead of 'undefined' - Jarmo Pertman
2012-04-12 11:38:31	<--	git (~git@sh1-ext.rs.github.com) has left #watir
2012-04-12 11:44:39	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-04-12 12:30:46	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-12 13:30:09	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-04-12 13:30:09	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/gxKYBA
2012-04-12 13:30:09	watirwd	[watir-webdriver/master] Bump watirspec. - Jari Bakken
2012-04-12 13:30:09	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-04-12 13:34:46	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-12 13:38:05	-->	travis-ci (~travis-ci@ec2-50-16-6-160.compute-1.amazonaws.com) has joined #watir
2012-04-12 13:38:05	travis-ci	[travis-ci] watir/watir-webdriver#68 (master - c3c44b1 : Jari Bakken): The build was broken.
2012-04-12 13:38:05	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/e04ed7f...c3c44b1
2012-04-12 13:38:05	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1075929
2012-04-12 13:38:05	<--	travis-ci (~travis-ci@ec2-50-16-6-160.compute-1.amazonaws.com) has left #watir
2012-04-12 13:42:02	-->	jibay_ (~jibay@ANancy-155-1-29-32.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-12 13:44:57	<--	jibay__ (~jibay@ANancy-155-1-45-44.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 265 seconds)
2012-04-12 13:59:55	-->	iquezc (rfxn@177.111.40.192) has joined #watir
2012-04-12 13:59:59	<--	iquezc (rfxn@177.111.40.192) has left #watir ("[CyberScript]")
2012-04-12 14:01:08	-->	watirspec (~watirspec@sh2.rs.github.com) has joined #watir
2012-04-12 14:01:08	watirspec	[watirspec] jarib pushed 1 new commit to master: http://git.io/1mzLBA
2012-04-12 14:01:09	watirspec	[watirspec/master] Fix return type of Browser#execute_script - Jari Bakken
2012-04-12 14:01:09	<--	watirspec (~watirspec@sh2.rs.github.com) has left #watir
2012-04-12 14:01:25	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-04-12 14:01:25	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/lC80Vg
2012-04-12 14:01:25	watirwd	[watir-webdriver/master] Bump watirspec. - Jari Bakken
2012-04-12 14:01:25	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-04-12 14:10:39	-->	travis-ci (~travis-ci@ec2-50-16-6-160.compute-1.amazonaws.com) has joined #watir
2012-04-12 14:10:39	travis-ci	[travis-ci] watir/watir-webdriver#69 (master - 7c87eeb : Jari Bakken): The build is still failing.
2012-04-12 14:10:39	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/c3c44b1...7c87eeb
2012-04-12 14:10:39	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1076139
2012-04-12 14:10:39	<--	travis-ci (~travis-ci@ec2-50-16-6-160.compute-1.amazonaws.com) has left #watir
2012-04-12 14:59:08	-->	travis-ci (~travis-ci@ec2-50-16-6-160.compute-1.amazonaws.com) has joined #watir
2012-04-12 14:59:08	travis-ci	[travis-ci] watir/watir-webdriver#70 (master - 7c87eeb : Jari Bakken): The build was fixed.
2012-04-12 14:59:08	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/18c35b4...7c87eeb
2012-04-12 14:59:08	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1076543
2012-04-12 14:59:08	<--	travis-ci (~travis-ci@ec2-50-16-6-160.compute-1.amazonaws.com) has left #watir
2012-04-12 15:55:48	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 272 seconds)
2012-04-12 16:08:01	-->	voodoofish4301 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-12 16:08:40	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Read error: Connection reset by peer)
2012-04-12 16:24:07	-->	s0ber_ (~s0ber@114-36-237-8.dynamic.hinet.net) has joined #watir
2012-04-12 16:26:11	<--	s0ber (~s0ber@114-36-245-126.dynamic.hinet.net) has quit (Ping timeout: 265 seconds)
2012-04-12 16:26:15	--	s0ber_ is now known as s0ber
2012-04-12 16:59:53	-->	djc_ (c0295584@gateway/web/freenode/ip.192.41.85.132) has joined #watir
2012-04-12 17:00:51	<--	djc_ (c0295584@gateway/web/freenode/ip.192.41.85.132) has quit (Client Quit)
2012-04-12 18:04:25		irc: disconnected from server
2012-04-12 18:04:48	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-12 18:04:48	--	Nicks #watir: [benbeltran benbeltran1 Carpetsmoker cheezy djinni easonhan fabrice31 fellu hemanth jarib jibay_ kdnewton Remco s0ber voodoofish4301 wapiflapi WOFall zeljko]
2012-04-12 18:04:48	--	Channel #watir: 18 nicks (0 ops, 0 halfops, 0 voices, 18 normals)
2012-04-12 18:04:55	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-12 18:54:58		irc: disconnected from server
2012-04-12 18:57:42	-->	benbeltran1 (~benbeltra@200.76.90.145) has joined #watir
2012-04-12 18:57:42	--	Nicks #watir: [benbeltran1 Carpetsmoker djinni easonhan fabrice31 fellu hemanth jarib jibay_ kdnewton Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-12 18:57:42	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-12 18:57:48	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-12 19:25:06		irc: disconnected from server
2012-04-12 19:25:36	-->	benbeltran1 (~benbeltra@200.76.90.145) has joined #watir
2012-04-12 19:25:36	--	Nicks #watir: [benbeltran1 Carpetsmoker djinni easonhan fabrice31 fellu hemanth jarib jibay_ kdnewton Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-12 19:25:36	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-12 19:25:46	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-12 19:31:56		irc: disconnected from server
2012-04-12 19:32:24	-->	benbeltran1 (~benbeltra@200.76.90.145) has joined #watir
2012-04-12 19:32:24	--	Nicks #watir: [benbeltran1 Carpetsmoker djinni easonhan fabrice31 fellu hemanth jarib jibay_ kdnewton Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-12 19:32:24	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-12 19:32:30	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-12 19:45:44	<--	jibay_ (~jibay@ANancy-155-1-29-32.w90-13.abo.wanadoo.fr) has quit (Remote host closed the connection)
2012-04-13 08:50:57		irc: disconnected from server
2012-04-13 08:51:13	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-13 08:51:13	--	Nicks #watir: [benbeltran1 Carpetsmoker cheezy djinni fabrice31 fellu hemanth jarib kdnewton Remco s0ber wapiflapi WOFall zeljko]
2012-04-13 08:51:13	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-13 08:51:20	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-13 08:52:22	-->	jibay (~jibay@ANancy-155-1-29-32.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-13 11:26:11	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-04-13 12:08:34	-->	lilingjay (3d34374d@gateway/web/freenode/ip.61.52.55.77) has joined #watir
2012-04-13 12:25:47	<--	lilingjay (3d34374d@gateway/web/freenode/ip.61.52.55.77) has quit (Quit: Page closed)
2012-04-13 12:31:25	-->	hemanth1 (~^_^@182.71.223.66) has joined #watir
2012-04-13 12:31:35	hemanth1	hello jarib
2012-04-13 12:36:31	<--	hemanth1 (~^_^@182.71.223.66) has quit (Ping timeout: 272 seconds)
2012-04-13 12:37:46	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-13 14:05:51	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-13 16:52:18	--	You are now known as bonboltron
2012-04-13 18:08:01	-->	fellu_ (fellu@fellu.net) has joined #watir
2012-04-13 18:08:09	-->	Remco_ (~remco@unaffiliated/remco) has joined #watir
2012-04-13 18:14:03	-->	jibay_ (~jibay@ANancy-155-1-29-32.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-13 18:16:49	<--	jibay (~jibay@ANancy-155-1-29-32.w90-13.abo.wanadoo.fr) has quit (*.net *.split)
2012-04-13 18:16:50	<--	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has quit (*.net *.split)
2012-04-13 18:16:50	<--	Remco (~remco@unaffiliated/remco) has quit (*.net *.split)
2012-04-13 18:16:50	<--	fellu (fellu@fellu.net) has quit (*.net *.split)
2012-04-13 18:19:03	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-04-13 18:46:16		irc: disconnected from server
2012-04-16 09:15:37	-->	bonboltron (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-16 09:15:37	--	Nicks #watir: [alexonthemoon bonboltron Carpetsmoker djinni fabrice31 fellu_ hemanth jarib Remco s0ber volter wapiflapi WOFall]
2012-04-16 09:15:37	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-16 09:15:44	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-16 09:16:52	-->	hemanth1 (~^_^@182.71.223.66) has joined #watir
2012-04-16 09:17:49	hemanth1	jarib: hello, wrt https://github.com/watir/watir-webdriver/issues/134 it's bombing in IE8-WIN7; works well with FF11 with ruby 1.9.3 and latest cut of watir-webdriver
2012-04-16 09:18:38	jarib	hemanth1: yeah, i missed that. but the example you provided is not complete
2012-04-16 09:18:43	jarib	it's going to pass on IE as well
2012-04-16 09:19:48	hemanth1	on IE the code which you have given is failing
2012-04-16 09:21:10	--	You are now known as benbeltran
2012-04-16 09:22:36	hemanth1	The example is same as the code, the structure is like "html/body/table/tbody/tr[2]/td[2]/div[2]/form/div[2]/div/div[5]/input[1]"
2012-04-16 09:23:00	hemanth1	there are Save and Cancel buttons
2012-04-16 09:23:07	hemanth1	input[1] is save
2012-04-16 09:26:40	hemanth1	jarib: flash works, but not click; the code you have given in that gist; says can't find element with xpath
2012-04-16 09:26:41	jarib	hemanth1: the HTML you've included is not enough to reproduce the problem: http://files.jaribakken.com/tmp/ie-works.png
2012-04-16 09:28:12	jarib	hemanth1: does this script work on your machine? https://gist.github.com/2399135
2012-04-16 09:28:49	hemanth1	trying
2012-04-16 09:28:53	hemanth1	one min please
2012-04-16 09:32:17	hemanth1	jarib: ya that it working! Ill just curl the webpage where i have the issue and give it, it has some stuff that I can't share and the structure is bit complex; hmm
2012-04-16 09:33:59	<--	alexonthemoon (~acheung@adsl-99-23-189-76.dsl.pltn13.sbcglobal.net) has quit (Quit: Lost terminal)
2012-04-16 09:34:36	jarib	hemanth1: that's what I meant by creating a minimal example.
2012-04-16 09:34:57	jarib	hemanth1: i.e. a minimal example that will actually reproduce the problem
2012-04-16 09:35:19	hemanth1	roger that
2012-04-16 09:35:24	jarib	good advice here: http://sscce.org/
2012-04-16 09:37:52	hemanth1	:)
2012-04-16 09:55:10	<--	hemanth1 (~^_^@182.71.223.66) has quit (Ping timeout: 245 seconds)
2012-04-16 09:55:56	-->	hemanth1 (~^_^@122.167.229.218) has joined #watir
2012-04-16 09:56:24	hemanth1	jarib: not able to get a neat sscce, but here is the nasty code https://raw.github.com/gist/f91cd3f2acda22514aac/664757edf43782aef51d1deb8b1539802982a5b5/crap.html :(
2012-04-16 09:56:41	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-16 10:05:07	 *	hemanth1 is a GNU/Linux fan, but forceable need to make some automation framework, to work on wind0w$ machine ….#duh
2012-04-16 10:05:10	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-04-16 10:06:18	hemanth1	jarib: bad?
2012-04-16 10:22:18	<--	hemanth1 (~^_^@122.167.229.218) has quit (Ping timeout: 276 seconds)
2012-04-16 10:22:29	-->	hemanth1 (~^_^@182.71.223.66) has joined #watir
2012-04-16 10:36:36	-->	hemanth2 (~^_^@122.167.229.218) has joined #watir
2012-04-16 10:37:00	<--	hemanth1 (~^_^@182.71.223.66) has quit (Ping timeout: 260 seconds)
2012-04-16 10:37:11	hemanth2	jarib: sorry if I have missed your message, internet connect is bit flaky today
2012-04-16 10:38:42	jarib	hemanth2: i'll look at the script later, got to run
2012-04-16 10:39:04	hemanth2	jarib: okies, i made a video also, i will just paste the link
2012-04-16 10:39:46	hemanth2	jarib: http://h3manth.com/error.mov
2012-04-16 11:36:26	<--	hemanth2 (~^_^@122.167.229.218) has quit (Quit: Leaving.)
2012-04-16 11:54:55	-->	ayoung_ (~ayoung@72.11.89.238) has joined #watir
2012-04-16 12:02:20	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-16 12:13:56		irc: disconnected from server
2012-04-16 12:14:14	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-16 12:14:14	--	Nicks #watir: [ayoung_ benbeltran Carpetsmoker djinni dougnoel fabrice31 fellu_ hemanth jarib Remco s0ber voodoofish430 wapiflapi WOFall]
2012-04-16 12:14:14	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-16 12:14:21	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-16 13:29:37	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Quit: Depression is merely anger without enthusiasm)
2012-04-16 15:16:35	<--	ayoung_ (~ayoung@72.11.89.238) has quit (Quit: ayoung_)
2012-04-16 17:04:48	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-04-16 17:06:37	rcrossan	I am new with using class files with watir/ruby. to use the class file in my script, do I just "require" is the same way I do with gems? I have been trying, but returns with no such file to load and then my class file name.
2012-04-16 17:44:27	-->	aikhelis (~aikhelis@216.251.112.134) has joined #watir
2012-04-16 17:44:40	aikhelis	hi all
2012-04-16 17:45:05	aikhelis	anyone (except jarib) is to be on Selenium COnf tomorrow?
2012-04-16 17:51:29	<--	aikhelis (~aikhelis@216.251.112.134) has left #watir
2012-04-16 17:51:49	-->	aikhelis (~aikhelis@216.251.112.134) has joined #watir
2012-04-16 17:58:37	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Remote host closed the connection)
2012-04-17 07:22:55		irc: disconnected from server
2012-04-17 09:00:21	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-17 09:00:21	--	Nicks #watir: [benbeltran Carpetsmoker djinni fabrice31 fellu_ hemanth hemanth1 jarib jibay Remco s0ber volter wapiflapi WOFall]
2012-04-17 09:00:21	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-17 09:00:27	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-17 10:03:51	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-04-17 10:07:59	rcrossan	 `%': invalid value for Float(): "NaN" (ArgumentError) but I have no percentage. the line it refers to is   rescue => e
2012-04-17 10:08:01	rcrossan	    puts $!
2012-04-17 10:08:02	rcrossan	    puts e.backtrace
2012-04-17 10:08:04	rcrossan	    @html.finishReport(@report, browser_type, test_environment)
2012-04-17 10:14:01	hemanth1	jarib: ok, i will try to get a sscce
2012-04-17 10:14:33	hemanth1	jarib: thank you for the replies, you must be busy getting ready for the conf, i presume
2012-04-17 10:19:57	-->	aikhelis (~aikhelis@194.168.141.1) has joined #watir
2012-04-17 10:50:17	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-17 10:53:18	<--	aikhelis (~aikhelis@194.168.141.1) has quit (Quit: aikhelis)
2012-04-17 11:52:35	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Quit: ChatZilla 0.9.88.2 [Firefox 11.0/20120312181643])
2012-04-17 12:00:37	<--	hemanth1 (~^_^@122.167.229.218) has quit (Quit: Leaving.)
2012-04-17 12:04:42	-->	hemanth1 (~^_^@122.167.229.218) has joined #watir
2012-04-17 12:07:10	<--	hemanth1 (~^_^@122.167.229.218) has quit (Client Quit)
2012-04-17 13:05:40	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-17 14:14:40	-->	hemanth1 (~^_^@122.167.229.218) has joined #watir
2012-04-17 15:05:22	-->	aikhelis (~aikhelis@cpc13-nmal18-2-0-cust780.croy.cable.virginmedia.com) has joined #watir
2012-04-17 15:10:24	<--	aikhelis (~aikhelis@cpc13-nmal18-2-0-cust780.croy.cable.virginmedia.com) has quit (Remote host closed the connection)
2012-04-17 15:10:42	-->	aikhelis (~aikhelis@216.251.112.134) has joined #watir
2012-04-17 15:17:56	<--	hemanth1 (~^_^@122.167.229.218) has quit (Quit: Leaving.)
2012-04-17 15:35:25	-->	jibay_ (~jibay@ANancy-155-1-30-51.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-17 15:35:29	<--	jibay (~jibay@ANancy-155-1-26-234.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 252 seconds)
2012-04-17 16:40:53	-->	jibay__ (~jibay@ANancy-155-1-49-240.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-17 16:43:17	<--	jibay_ (~jibay@ANancy-155-1-30-51.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 248 seconds)
2012-04-18 08:43:38		irc: disconnected from server
2012-04-18 08:43:54	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-18 08:43:54	--	Nicks #watir: [benbeltran Carpetsmoker djinni easonhan fabrice31 fellu_ hemanth jarib jibay Remco s0ber volter wapiflapi WOFall zeljko]
2012-04-18 08:43:54	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-18 08:44:01	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-18 09:26:10	-->	hemanth1 (~^_^@122.167.117.254) has joined #watir
2012-04-18 09:35:16	<--	hemanth1 (~^_^@122.167.117.254) has quit (Remote host closed the connection)
2012-04-18 10:02:10	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-04-18 10:02:10	watirwd	[watir-webdriver] jarib force-pushed selenium-webdriver-testing from a3a4006 to 2eab131: http://git.io/9vhiAg
2012-04-18 10:02:10	watirwd	[watir-webdriver/selenium-webdriver-testing] Bump to 2.21.2.rc1 - Jari Bakken
2012-04-18 10:02:10	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-04-18 10:11:51	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-18 10:27:02	-->	travis-ci (~travis-ci@ec2-50-17-112-39.compute-1.amazonaws.com) has joined #watir
2012-04-18 10:27:02	travis-ci	[travis-ci] watir/watir-webdriver#72 (selenium-webdriver-testing - 2eab131 : Jari Bakken): The build passed.
2012-04-18 10:27:02	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/a3a4006...2eab131
2012-04-18 10:27:02	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1121120
2012-04-18 10:27:02	<--	travis-ci (~travis-ci@ec2-50-17-112-39.compute-1.amazonaws.com) has left #watir
2012-04-18 10:56:23	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-18 12:21:22	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-04-18 12:26:32	zeljko	cheezy: do you have an example somewhere on how to use page-object gem with rspec?
2012-04-18 12:27:01	cheezy	I don't think I've every posted one.  Let me create a gist
2012-04-18 12:27:23	zeljko	it is pretty much clear to me how to do it, just wondering is there a convention where to put "pages" folder
2012-04-18 12:27:52	zeljko	and where to do magic so stuff like this works
2012-04-18 12:28:00	zeljko	on_page(LoginPage).login...
2012-04-18 12:29:13	cheezy	no magic place for the pages - perhaps create a pages directory under spec?
2012-04-18 12:29:34	zeljko	and if I want to use both rspec and cucumber in the same project? :)
2012-04-18 12:29:42	zeljko	then pages directory in root?
2012-04-18 12:30:44	cheezy	take a look at this -> https://gist.github.com/2415279
2012-04-18 12:31:05	zeljko	I am pretty sure that I will use page-object gem in at least couple of projects in the next few weeks
2012-04-18 12:31:15	cheezy	If the test is purely a test project then create a lib directory and place your pages, matchers, factories, etc in that
2012-04-18 12:31:17	zeljko	I am investigating it
2012-04-18 12:31:55	zeljko	so far, both of the projects I am working on right now, the repository I am working on is just tests
2012-04-18 12:32:01	zeljko	I do not have access to production code
2012-04-18 12:32:18	cheezy	I think I should write a blog post with a more complete example
2012-04-18 12:32:32	zeljko	so lib/pages sounds like a good place
2012-04-18 12:32:44	cheezy	yes
2012-04-18 12:32:57	zeljko	I think it is important that we have a convention
2012-04-18 12:33:07	zeljko	"the place where stuff goes"
2012-04-18 12:33:15	cheezy	If the project is a rails project then lib would not be appropriate
2012-04-18 12:33:26	cheezy	if it is a pure test project the lib seems to be the best location
2012-04-18 12:33:37	zeljko	at the moment, only tests live in my repo
2012-04-18 12:42:17	zeljko	what does line 22 do?
2012-04-18 12:42:18	zeljko	https://gist.github.com/2415279#L22
2012-04-18 12:45:12	zeljko	and is there a way to define base url for the site?
2012-04-18 12:45:16	zeljko	so you could do something like
2012-04-18 12:45:18	zeljko	page_url "#{site}login"
2012-04-18 12:49:03	cheezy	line 22 is defining a route through the system.  You can have several.  It is what allows us to make calls like the one on line 41
2012-04-18 12:49:49	cheezy	i'm working on a new gem that handles config related info like base_url, etc.  it will be called fignewton
2012-04-18 12:50:49	zeljko	great name :)
2012-04-18 12:52:16	zeljko	thanks a lot, got page-object working with rspec
2012-04-18 12:52:48	zeljko	I do not why I thought on_page would open the page
2012-04-18 12:53:01	zeljko	now I see that to open the page I have to use visit_page
2012-04-18 12:53:18	cheezy	yes
2012-04-18 12:53:30	cheezy	or there are short version - on HomePage and visit HomePage
2012-04-18 12:53:30	zeljko	and navigate_to would use the route?
2012-04-18 12:53:44	cheezy	yes.  by default it uses a route with the key :route
2012-04-18 12:54:00	zeljko	is there any documentation on that?
2012-04-18 12:54:09	cheezy	if you define another route name :some_other_route you can use it by calling navigate_to(SomePage, :using => :some_other_route)
2012-04-18 12:54:14	cheezy	yes - rdocs for it
2012-04-18 12:54:24	zeljko	thanks, will take a look
2012-04-18 12:54:31	cheezy	there is also continue_navigation_to which continues the route where you stopped
2012-04-18 12:54:42	cheezy	look at rdoc for PageFactory
2012-04-18 12:54:50	zeljko	will do, thanks
2012-04-18 12:56:25	zeljko	is there an easy way to sometimes drive the browser at your machine, and sometimes run the tests at sauce labs (for example)?
2012-04-18 12:57:05	zeljko	for example, while you are developing, you use the local browser, but CI runs at sauce labs
2012-04-18 12:58:26	 *	zeljko brb
2012-04-18 12:58:37	cheezy	I typically use profiles to set an environment variable to define driver
2012-04-18 12:59:08	cheezy	you could then place logic in your RSpec.configure to initialize the appropriate driver based on the ENV
2012-04-18 13:18:39	zeljko	it would be great if you posted some sample code
2012-04-18 13:18:44	zeljko	but I think I got the idea
2012-04-18 13:48:41	<--	jibay (~jibay@ANancy-155-1-27-215.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 252 seconds)
2012-04-18 13:49:00	-->	jibay (~jibay@ANancy-155-1-29-200.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-18 14:30:46	zeljko	did you ever use page-object with test/unit? (not a joke)
2012-04-18 14:31:13	cheezy	no
2012-04-18 14:33:03	zeljko	but there should be no problems, right?
2012-04-18 14:33:33	zeljko	got into a project that uses test/unit, will try to use page-object there too, will see how it goes
2012-04-18 14:37:33	cheezy	I think there should be no problems
2012-04-18 14:38:13	cheezy	I think Tiffany is using it with TestUnit
2012-04-18 14:42:47	zeljko	great, will ask her if I get into trouble
2012-04-18 14:45:16	zeljko	I promise this is the last thing :)
2012-04-18 14:45:40	zeljko	how do I check if the browser opened the correct url?
2012-04-18 14:46:07	zeljko	something like @browser.url.should == HomePage.url
2012-04-18 14:46:26	cheezy	there is a current_url method
2012-04-18 14:46:44	zeljko	just found it in rdoc
2012-04-18 14:46:51	cheezy	@brwoser.current_url.should == ???
2012-04-18 14:47:07	zeljko	oh
2012-04-18 14:47:38	zeljko	there is no way for me to ask the page for it's URL?
2012-04-18 14:48:02	zeljko	something linke
2012-04-18 14:48:06	zeljko	something like
2012-04-18 14:48:11	zeljko	@browser.url.should == HomePage.url
2012-04-18 14:48:39	zeljko	I have set page url with page_url
2012-04-18 14:49:30	zeljko	I am creating a simple security test, with a few roles I am opening all pages, and checking if admin can see all of them, and other roles are redirected to home page if they can not see a page
2012-04-18 14:51:52	cheezy	sorry - @page.current_url
2012-04-18 14:52:03	cheezy	or on(HomePage).current_url
2012-04-18 14:52:38	cheezy	I'm having three conversations at once - and losing context (and my mind)
2012-04-18 14:53:22	zeljko	sorry :)
2012-04-18 14:53:34	zeljko	ok, so current_url is what I need then
2012-04-18 14:55:35	zeljko	argh
2012-04-18 14:55:40	zeljko	problems
2012-04-18 14:55:56	zeljko	will create gist
2012-04-18 15:00:22	zeljko	https://gist.github.com/2416140
2012-04-18 15:00:27	zeljko	am I doing something wrong?
2012-04-18 15:01:56	cheezy	current_url is an instance method and not a class method
2012-04-18 15:02:00	cheezy	try this:
2012-04-18 15:02:10	cheezy	visut(HomePage) do |page|
2012-04-18 15:02:24	cheezy	  @browser.url.should == page.current_url
2012-04-18 15:02:25	cheezy	end
2012-04-18 15:02:39	zeljko	sorry, had to delete that gist, this is the new one
2012-04-18 15:02:40	zeljko	https://gist.github.com/2416149
2012-04-18 15:03:00	zeljko	thanks, will try
2012-04-18 15:04:01	cheezy	or you could do
2012-04-18 15:04:17	cheezy	visit(HomePage).current_url.should == "the expected url"
2012-04-18 15:07:20	zeljko	well, I am expecting (in this case) current_url :)
2012-04-18 15:07:53	zeljko	not sure if I am explaining what I want to do
2012-04-18 15:08:14	cheezy	explain it well or i'll kick your ass!
2012-04-18 15:10:18	zeljko	in short, visit a bunch of pages and check if the page opened, or if you were redirected to another page
2012-04-18 15:10:28	zeljko	so mainly
2012-04-18 15:10:35	zeljko	visit SomePage
2012-04-18 15:10:50	zeljko	and then check if the browser URL is the same as page url
2012-04-18 15:11:14	cheezy	they will always be the same - page-object is delegating to watir-webdriver to get the current_url
2012-04-18 15:11:23	cheezy	instead you should use your expectation
2012-04-18 15:11:38	cheezy	when you visit(HomePage) you expect to be on http://foobar.com
2012-04-18 15:11:44	cheezy	so you can do this
2012-04-18 15:11:58	cheezy	visit(HomePage).current_url.should == 'http://foobar.com'
2012-04-18 15:12:28	zeljko	I would like to avoid having urls in the specs
2012-04-18 15:12:40	zeljko	since pages already should know their URLs
2012-04-18 15:12:41	cheezy	where are you getting your list of expected urls?
2012-04-18 15:13:00	zeljko	in my page object implementation, every page knows it's URL
2012-04-18 15:13:07	zeljko	so I can do something like
2012-04-18 15:13:13	zeljko	visit AdminPage
2012-04-18 15:13:18	zeljko	and if user is not admin
2012-04-18 15:13:34	zeljko	@browser.url.should == LoginPage.url
2012-04-18 15:13:39	zeljko	and if user is admin
2012-04-18 15:13:49	zeljko	@browser.url.should == AdminPage.url
2012-04-18 15:13:52	zeljko	something like that
2012-04-18 15:13:54	cheezy	visit_page(LoginPage).current_url.should == LoginPage.url
2012-04-18 15:14:19	zeljko	yes, something like that
2012-04-18 15:14:24	cheezy	then use that
2012-04-18 15:14:27	zeljko	I could not find "url" method
2012-04-18 15:14:39	zeljko	I actually tried that
2012-04-18 15:14:48	zeljko	let my try again, maybe I messed it up
2012-04-18 15:14:53	cheezy	you are right
2012-04-18 15:15:07	cheezy	Let me make a mod to your gist
2012-04-18 15:15:14	zeljko	please do
2012-04-18 15:15:56	zeljko	(gist is here https://gist.github.com/2416149 )
2012-04-18 15:18:25	cheezy	the problem is that site is a local variable of the class
2012-04-18 15:18:43	zeljko	yes, I have been looking at the implementation
2012-04-18 15:18:55	<--	s0ber (~s0ber@114-36-240-221.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-04-18 15:19:10	<--	cheezy (~cheezy@69.54.48.158) has quit (Read error: No route to host)
2012-04-18 15:19:24	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-04-18 15:19:32	cheezy	there are a couple of ways to solve this
2012-04-18 15:19:32	zeljko	if it were a method, or instance variable, then it could be made accessible
2012-04-18 15:19:52	cheezy	you can add a class method -> example in the gist
2012-04-18 15:20:05	-->	s0ber (~s0ber@114-36-244-221.dynamic.hinet.net) has joined #watir
2012-04-18 15:20:22	cheezy	and now you can do HomePage.site
2012-04-18 15:21:41	cheezy	I think that should work
2012-04-18 15:22:23	zeljko	sorry, the example was bad
2012-04-18 15:22:27	zeljko	I have changed the file
2012-04-18 15:23:27	zeljko	site variable is there temporarily, I did not know how to provide base URL to all pages, so for now I just add it to all classes as local variable, will fix later
2012-04-18 15:25:11	zeljko	take a look at home_page.rb now, I think this should work, will try
2012-04-18 15:26:38	cheezy	let me know
2012-04-18 15:32:04	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-18 15:34:45	zeljko	this now works
2012-04-18 15:34:46	zeljko	https://gist.github.com/2416149
2012-04-18 15:35:00	zeljko	thanks a lot for all the help
2012-04-18 15:35:18	zeljko	there will be beer when we meet again :)
2012-04-18 15:35:37	 *	zeljko be right back
2012-04-18 16:53:38	 *	zeljko has to get some sleep
2012-04-18 20:02:26		irc: disconnected from server
2012-04-18 20:23:50	-->	benbeltran (~benbeltra@200.76.90.190) has joined #watir
2012-04-18 20:23:50	--	Nicks #watir: [benbeltran Carpetsmoker djinni easonhan fabrice31 fellu_ hemanth jarib Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-18 20:23:50	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-18 20:23:56	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-18 21:31:06	easonhan	jarib:I have a scenario just like this: I need to set cookies to a cretain domain, so that I can get the login status. So I need to set domain when using the browser.cookies.add() method. I modify the source code and add a key named domain , it works well.
2012-04-18 21:33:37	easonhan	I think maybe this functionality will be added in the next version ?
2012-04-19 08:58:59		irc: disconnected from server
2012-04-19 08:59:17	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-19 08:59:17	--	Nicks #watir: [benbeltran Carpetsmoker cheezy djinni easonhan fabrice31 fellu_ fructose hemanth jarib jibay_ Remco s0ber volter voodoofish430 wapiflapi WOFall zeljko]
2012-04-19 08:59:17	--	Channel #watir: 18 nicks (0 ops, 0 halfops, 0 voices, 18 normals)
2012-04-19 08:59:23	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-19 09:08:54	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-19 10:18:51	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-19 10:32:28	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Read error: No route to host)
2012-04-19 10:37:02	-->	fabrice31 (~fabrice31@89.30.127.162) has joined #watir
2012-04-19 10:47:52	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-04-19 10:48:02	rcrossan	seeking direction or site that could provide me examples or documentation on basic reporting for my scripts. The most important item I need in my script is to log how long the script took and then pass/fail for items of course.
2012-04-19 10:53:53	-->	cheezy_ (~cheezy@adsl-76-241-68-48.dsl.bcvloh.sbcglobal.net) has joined #watir
2012-04-19 10:54:47	dougnoel	I honestly got that by using Cucumber to wrap around my Watir-webdriver tests.
2012-04-19 10:55:43	dougnoel	RSpec also might give you what you need as far as reporting tho  depending on what you need your reports to look like.
2012-04-19 10:55:52	<--	cheezy (~cheezy@69.54.48.158) has quit (Ping timeout: 276 seconds)
2012-04-19 11:17:08	<--	cheezy_ (~cheezy@adsl-76-241-68-48.dsl.bcvloh.sbcglobal.net) has quit (Ping timeout: 240 seconds)
2012-04-19 11:27:51	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-04-19 11:54:47	rcrossan	thank you dougnoel. I will look into both of those. I have heard many good things about cucumber, but just have not dived into it yet.
2012-04-19 11:56:19	dougnoel	rcrossan: I highly suggest the Cucumber Book from Pragmatic Bookshelf.  It'll have you up and running in the first chapter, and better yet explains WHY you should use the approach, and HOW to implement it.  They also have an Rspec book that looked good when I perused it at the bookstore.
2012-04-19 11:56:41	dougnoel	And by how to implement it, I mean from a business process persepctive - not just a technical perspective.
2012-04-19 11:58:27	rcrossan	I think I just might go get it today then! Awesome!
2012-04-19 11:59:17	dougnoel	It's totally worth the money, esp if you get it on Amazon. ;)
2012-04-19 12:29:38	rcrossan	I wish it had an e-book version =) I'm too impatient
2012-04-19 12:49:43	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-19 13:34:55	dougnoel	rccrossan: They have a PDF version
2012-04-19 13:35:48	dougnoel	http://pragprog.com/book/hwcuc/the-cucumber-book
2012-04-19 13:35:58	dougnoel	Oh and ebooks
2012-04-19 13:36:03	dougnoel	epub and mobi
2012-04-19 13:36:17	dougnoel	$20
2012-04-19 14:15:52	<--	jibay_ (~jibay@ANancy-155-1-1-51.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 272 seconds)
2012-04-19 14:15:53	-->	jibay__ (~jibay@ANancy-155-1-52-138.w90-13.abo.wanadoo.fr) has joined #watir
2012-04-19 15:21:48		irc: disconnected from server
2012-04-19 15:22:03	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-19 15:22:03	--	Nicks #watir: [benbeltran benbeltran1 Carpetsmoker djinni dougnoel easonhan fabrice31 fellu_ fructose hemanth jarib jibay__ rcrossan Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-19 15:22:03	--	Channel #watir: 19 nicks (0 ops, 0 halfops, 0 voices, 19 normals)
2012-04-19 15:22:09	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-19 15:24:43	<--	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 264 seconds)
2012-04-19 15:24:52	--	You are now known as benbeltran
2012-04-19 15:30:17	--	jibay__ is now known as jibay
2012-04-19 16:20:29	<--	fructose (~fructose@97-121-44-82.bois.qwest.net) has quit (Remote host closed the connection)
2012-04-19 16:56:06	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 272 seconds)
2012-04-19 17:31:27	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Remote host closed the connection)
2012-04-19 18:05:53		irc: disconnected from server
2012-04-19 18:06:11	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-19 18:06:11	--	Nicks #watir: [benbeltran benbeltran1 Carpetsmoker djinni easonhan fabrice31 fellu_ hemanth jarib jibay Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-19 18:06:11	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-19 18:06:11	--	Notice(zelazny.freenode.net): [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-04-19 18:06:17	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-19 19:09:41		irc: disconnected from server
2012-04-20 09:44:12	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-20 09:44:12	--	Nicks #watir: [benbeltran Carpetsmoker cheezy djinni dougnoel fabrice31 fellu_ gheegh hemanth jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-04-20 09:44:12	--	Channel #watir: 16 nicks (0 ops, 0 halfops, 0 voices, 16 normals)
2012-04-20 09:44:12	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-20 10:15:18	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-04-20 10:29:12	hemanth	zeljko, okies, yet to try that out, so asked
2012-04-20 11:14:12	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-04-20 12:12:58	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-20 12:34:27	-->	Doug_ (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-20 12:36:00	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 272 seconds)
2012-04-20 14:36:00	-->	cheezy (~cheezy@dynamic-acs-72-23-253-18.zoominternet.net) has joined #watir
2012-04-20 15:11:10	<--	Doug_ (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 272 seconds)
2012-04-20 15:12:41	-->	Doug_ (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-20 16:02:39	<--	Doug_ (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 245 seconds)
2012-04-20 16:03:15	<--	cheezy (~cheezy@dynamic-acs-72-23-253-18.zoominternet.net) has quit (Remote host closed the connection)
2012-04-20 18:05:58		irc: disconnected from server
2012-04-20 18:06:17	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-20 18:06:17	--	Nicks #watir: [benbeltran benbeltran1 Carpetsmoker djinni fellu_ gheegh hemanth jarib jibay Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-04-20 18:06:17	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-20 18:06:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-21 16:41:51		irc: disconnected from server
2012-04-21 16:42:13	-->	benbeltran1 (~benbeltra@200.76.90.159) has joined #watir
2012-04-21 16:42:13	--	Nicks #watir: [benbeltran1 djinni fellu_ gheegh hemanth jarib jibay Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-04-21 16:42:13	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-21 16:42:19	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-23 08:46:15	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-23 08:46:15	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-04-23 08:46:15	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-23 08:46:16	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-23 08:55:50	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-23 08:55:51	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh hemanth jarib jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-04-23 08:55:51	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-23 08:55:51	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-23 09:07:08	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-04-23 10:15:15	<--	hemanth (~hemanth@121.244.159.130) has quit (Disconnected by services)
2012-04-23 10:15:32	-->	hemanth_ (~hemanth@121.244.159.130) has joined #watir
2012-04-23 13:17:03	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-23 13:43:25	-->	git (~git@sh2.rs.github.com) has joined #watir
2012-04-23 13:43:25	git	[watir-classic] jarmo pushed 4 new commits to master: http://git.io/aP1bnQ
2012-04-23 13:43:25	git	[watir-classic/master] update changes - Jarmo Pertman
2012-04-23 13:43:25	git	[watir-classic/master] bump watirspec - Jarmo Pertman
2012-04-23 13:43:25	git	[watir-classic/master] update version - Jarmo Pertman
2012-04-23 13:43:25	<--	git (~git@sh2.rs.github.com) has left #watir
2012-04-23 13:49:03	-->	git (~git@sh2.rs.github.com) has joined #watir
2012-04-23 13:49:03	git	[watir-classic] jarmo tagged v.3.0.0 at df79857: http://git.io/jCjrrA
2012-04-23 13:49:03	git	[watir-classic/v.3.0.0] merge 3.0.0 changes - Jarmo Pertman
2012-04-23 13:49:03	<--	git (~git@sh2.rs.github.com) has left #watir
2012-04-23 13:49:15	-->	git (~git@sh3.rs.github.com) has joined #watir
2012-04-23 13:49:16	git	[watir-classic] jarmo pushed 1 new commit to master: http://git.io/GhDKKQ
2012-04-23 13:49:16	git	[watir-classic/master] merge 3.0.0 changes - Jarmo Pertman
2012-04-23 13:49:16	<--	git (~git@sh3.rs.github.com) has left #watir
2012-04-23 14:18:08	-->	mellissa (3fe035b9@gateway/web/freenode/ip.63.224.53.185) has joined #watir
2012-04-23 14:19:01	mellissa	quick question if anyone has a minute:
2012-04-23 14:19:01	mellissa	why isnt SciTe bundled with watir anymore?
2012-04-23 14:20:10	zeljko	it is not bundled with _ruby_
2012-04-23 14:20:23	zeljko	watir is just a ruby library (gem)
2012-04-23 14:22:32	mellissa	ah
2012-04-23 14:22:52	mellissa	I see. thank you zeljko
2012-04-23 14:25:23	mellissa	Im trying to test something out super quick, and I didnt have anything that was as good as running watir scripts on the fly
2012-04-23 14:26:15	mellissa	Im using a combination of notepad++ and the command prompt because Notepad++ doesnt seem to show debug output.
2012-04-23 14:27:18	mellissa	Is there anything similar to scite I can use? I downloaded and unzipped scite/scintilla, but after extracting the zip there wasnt an exe or msi or anything included
2012-04-23 14:27:32	mellissa	so it looked like you have to compile it yourself or something
2012-04-23 14:33:06	zeljko	try rubymine ide
2012-04-23 14:33:15	zeljko	it has 30 day free trial
2012-04-23 14:40:37	mellissa	good call. thank you
2012-04-23 16:05:44	<--	mellissa (3fe035b9@gateway/web/freenode/ip.63.224.53.185) has quit (Quit: Page closed)
2012-04-23 18:01:28	<--	jibay (~jibay@ANancy-155-1-52-138.w90-13.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-04-23 18:39:22		irc: disconnected from server
2012-04-23 18:39:43	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-23 18:39:43	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh hemanth_ jarib Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-04-23 18:39:43	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-23 18:39:49	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-23 20:46:11		irc: disconnected from server
2012-04-24 09:06:13	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-24 09:06:13	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib jibay Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-04-24 09:06:13	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-04-24 09:06:20	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-24 09:17:00	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-24 10:41:14	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-24 11:01:44	--	You are now known as benbeltran
2012-04-24 11:31:56	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-24 12:31:47	-->	voodoofish4301 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-04-24 12:32:22	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Ping timeout: 272 seconds)
2012-04-24 13:20:32	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-24 13:20:49	<--	voodoofish4301 (~mtorres@NAT8.pas.idealab.com) has quit (Ping timeout: 260 seconds)
2012-04-24 15:52:29	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 260 seconds)
2012-04-24 16:36:02	<--	s0ber (~s0ber@114-36-235-29.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-04-24 16:37:27	-->	s0ber (~s0ber@114-36-241-124.dynamic.hinet.net) has joined #watir
2012-04-24 18:50:31		irc: disconnected from server
2012-04-24 18:50:48	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-24 18:50:48	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh jarib jibay Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-04-24 18:50:48	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-24 18:50:54	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-24 20:14:25		irc: disconnected from server
2012-04-24 21:57:06	-->	benbeltran1 (~benbeltra@200.76.90.253) has joined #watir
2012-04-24 21:57:06	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-04-24 21:57:06	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-04-24 21:57:13	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-24 22:18:35		irc: disconnected from server
2012-04-25 09:00:45	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-25 09:00:45	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh jarib Remco s0ber volter voodoofish wapiflapi WOFall zeljko]
2012-04-25 09:00:45	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-25 09:00:45	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-25 10:06:54	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-04-25 10:55:31	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-04-25 10:59:01	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-25 12:13:41	<--	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has quit (Read error: Connection reset by peer)
2012-04-25 12:30:09	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-04-25 18:39:41		irc: disconnected from server
2012-04-25 18:40:04	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-25 18:40:04	--	Nicks #watir: [benbeltran benbeltran1 djinni fabrice31 fellu gheegh jarib kdnewton Remco s0ber voodoofish voodoofish430 wapiflapi WOFall zeljko]
2012-04-25 18:40:04	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-04-25 18:40:04	--	Notice(hitchcock.freenode.net): [freenode-info] why register and identify? your IRC nick is how people know you. http://freenode.net/faq.shtml#nicksetup
2012-04-25 18:40:10	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-25 18:43:04	<--	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 272 seconds)
2012-04-26 08:38:33		irc: disconnected from server
2012-04-26 08:38:50	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-26 08:38:50	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu gheegh jarib Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-04-26 08:38:50	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-04-26 08:38:56	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-26 08:51:19	-->	fauch (~fauch@213.152.58.161) has joined #watir
2012-04-26 08:51:31	fauch	lo
2012-04-26 09:25:35	<--	fauch (~fauch@213.152.58.161) has quit (Quit: leaving)
2012-04-26 10:00:49	-->	watirspec (~watirspec@sh3.rs.github.com) has joined #watir
2012-04-26 10:00:50	watirspec	[watirspec] jarib pushed 2 new commits to master: http://git.io/oOIzkQ
2012-04-26 10:00:50	watirspec	[watirspec/master] Improve window switching spec. - Jari Bakken
2012-04-26 10:00:51	watirspec	[watirspec/master] Run server in a Thread on Windows + 1.9, to avoid losing custom routes. - Jari Bakken
2012-04-26 10:00:51	<--	watirspec (~watirspec@sh3.rs.github.com) has left #watir
2012-04-26 10:45:55	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-04-26 10:45:55	watirwd	[watir-webdriver] jarib pushed 2 new commits to master: http://git.io/HXKG0A
2012-04-26 10:45:55	watirwd	[watir-webdriver/master] Add ability to explicitly disable native events on Windows. - Jari Bakken
2012-04-26 10:45:55	watirwd	[watir-webdriver/master] Bump watirspec. - Jari Bakken
2012-04-26 10:45:55	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-04-26 10:51:54	-->	travis-ci (~travis-ci@ec2-174-129-58-101.compute-1.amazonaws.com) has joined #watir
2012-04-26 10:51:54	travis-ci	[travis-ci] watir/watir-webdriver#76 (master - 1143f8f : Jari Bakken): The build passed.
2012-04-26 10:51:54	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/d7eafe8...1143f8f
2012-04-26 10:51:54	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1181780
2012-04-26 10:51:54	<--	travis-ci (~travis-ci@ec2-174-129-58-101.compute-1.amazonaws.com) has left #watir
2012-04-26 10:55:29	-->	cheezy (806b11cd@gateway/web/freenode/ip.128.107.17.205) has joined #watir
2012-04-26 10:55:53	<--	cheezy (806b11cd@gateway/web/freenode/ip.128.107.17.205) has quit (Client Quit)
2012-04-26 12:26:47	zeljko	anybody knows how to get browser name? something like browser.browser_name
2012-04-26 12:27:10	zeljko	I want to get back :firefox, or :chrome (or whatever)
2012-04-26 12:27:54	zeljko	b.wd.browser
2012-04-26 12:27:56	zeljko	ok, found it
2012-04-26 13:32:57	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-26 15:42:12	zeljko	jarib: safari does not have support for screen shots?
2012-04-26 16:14:16	zeljko	jarib said on twitter: "correct" :)
2012-04-26 16:14:34	 *	zeljko is obviously talking to myself
2012-04-26 21:20:15		irc: disconnected from server
2012-04-27 10:23:00	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-04-27 10:23:00	--	Nicks #watir: [benbeltran djinni fabrice31 fellu gheegh hemanth jarib Remco s0ber voodoofish wapiflapi WOFall zeljko]
2012-04-27 10:23:00	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-04-27 10:23:00	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-04-27 11:06:53	-->	voodoofish430 (~mtorres@adsl-99-56-192-237.dsl.lsan03.sbcglobal.net) has joined #watir
2012-04-27 11:09:13	<--	voodoofish430 (~mtorres@adsl-99-56-192-237.dsl.lsan03.sbcglobal.net) has quit (Client Quit)
2012-04-27 11:43:29	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-04-27 12:20:08	--	You are now known as navid
2012-04-27 12:20:15	--	You are now known as benbeltran
2012-04-27 12:38:35	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-04-27 14:29:07	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-04-27 15:25:55	-->	s0ber_ (~s0ber@114-36-243-177.dynamic.hinet.net) has joined #watir
2012-04-27 15:27:38	<--	s0ber (~s0ber@114-36-241-124.dynamic.hinet.net) has quit (Ping timeout: 240 seconds)
2012-04-27 15:27:44	--	s0ber_ is now known as s0ber
2012-04-27 15:34:46	-->	jibay (~jibay@ANancy-652-1-277-153.w92-130.abo.wanadoo.fr) has joined #watir
2012-04-27 15:52:39	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 245 seconds)
2012-04-27 19:45:20		irc: disconnected from server
2012-05-03 10:18:02	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-03 10:18:02	--	Nicks #watir: [benbeltran djinni fabrice31_ fellu_ hemanth jarib jibay_ Remco s0ber wapiflapi WOFall zeljko]
2012-05-03 10:18:02	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-03 10:18:02	--	Notice(zelazny.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-05-03 10:18:02	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-03 12:43:28	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-03 14:46:34	-->	enroxorz (~enroxorz@unaffiliated/enroxorz) has joined #watir
2012-05-03 15:01:32	-->	jibay__ (~jibay@ANancy-155-1-12-94.w90-6.abo.wanadoo.fr) has joined #watir
2012-05-03 15:03:05	<--	jibay_ (~jibay@ANancy-155-1-28-85.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 252 seconds)
2012-05-03 16:22:03	-->	s0ber_ (~s0ber@114-36-227-97.dynamic.hinet.net) has joined #watir
2012-05-03 16:22:37	<--	s0ber (~s0ber@114-36-238-175.dynamic.hinet.net) has quit (Read error: Operation timed out)
2012-05-03 16:22:45	--	s0ber_ is now known as s0ber
2012-05-03 16:31:21	<--	enroxorz (~enroxorz@unaffiliated/enroxorz) has quit (Quit: Leaving)
2012-05-03 18:28:00		irc: disconnected from server
2012-05-04 09:14:15	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-04 09:14:15	--	Nicks #watir: [benbeltran djinni fabrice31_ fellu hemanth jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-05-04 09:14:15	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-04 09:14:21	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-04 09:15:10	<--	jibay (~jibay@ANancy-155-1-12-94.w90-6.abo.wanadoo.fr) has quit (Read error: Connection reset by peer)
2012-05-04 10:23:32	-->	Al-Bundy (41751682@gateway/web/freenode/ip.65.117.22.130) has joined #watir
2012-05-04 11:11:41	<--	fabrice31_ (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-05-04 11:48:16	<--	hemanth (~hemanth@121.244.159.130) has quit (Disconnected by services)
2012-05-04 11:48:35	-->	hemanth (~hemanth@121.244.159.130) has joined #watir
2012-05-04 11:48:40	<--	hemanth (~hemanth@121.244.159.130) has quit (Disconnected by services)
2012-05-04 12:22:35	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-04 12:37:05	<--	Al-Bundy (41751682@gateway/web/freenode/ip.65.117.22.130) has left #watir
2012-05-05 13:06:50		irc: disconnected from server
2012-05-05 13:08:15	-->	benbeltran (~benbeltra@200.76.90.159) has joined #watir
2012-05-05 13:08:15	--	Nicks #watir: [benbeltran djinni fellu jarib Remco s0ber wapiflapi WOFall zeljko]
2012-05-05 13:08:15	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-05 13:08:21	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-05 15:26:27		irc: disconnected from server
2012-05-07 12:03:30	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-07 12:03:30	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-05-07 12:03:30	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-07 12:03:30	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-07 13:17:25	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-07 13:42:25	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Quit: Leaving.)
2012-05-07 14:33:15	-->	voodoofish430 (~mtorres@adsl-99-56-192-237.dsl.lsan03.sbcglobal.net) has joined #watir
2012-05-07 14:41:55	-->	jibay_ (~jibay@ANancy-155-1-47-127.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-07 14:44:53	<--	jibay (~jibay@ANancy-155-1-29-18.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 248 seconds)
2012-05-07 16:34:24	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-05-08 09:54:16	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-08 09:54:16	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu_ jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-05-08 09:54:16	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-08 09:54:18	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-08 09:57:40		irc: disconnected from server
2012-05-08 09:57:56	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-08 09:57:56	--	Nicks #watir: [benbeltran benbeltran1 cheezy djinni fabrice31 fellu_ jarib jibay Remco s0ber wapiflapi WOFall zeljko]
2012-05-08 09:57:56	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-05-08 09:58:07	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-08 09:59:05	<--	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 244 seconds)
2012-05-08 11:02:06	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-05-08 12:02:26	--	You are now known as benbeltran
2012-05-08 12:08:56	-->	cheezy_ (~cheezy@69.54.48.158) has joined #watir
2012-05-08 12:09:43	<--	cheezy (~cheezy@69.54.48.158) has quit (Read error: Connection reset by peer)
2012-05-08 13:17:18	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-08 16:01:04	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Ping timeout: 256 seconds)
2012-05-08 16:03:40	<--	cheezy_ (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-05-08 18:22:24		irc: disconnected from server
2012-05-08 18:22:39	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-08 18:22:39	--	Nicks #watir: [benbeltran benbeltran1 cheezy djinni fabrice31 fellu_ jarib jibay Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-05-08 18:22:39	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-05-08 20:14:18		irc: disconnected from server
2012-05-08 20:15:00	-->	benbeltran1 (~benbeltra@200.76.90.165) has joined #watir
2012-05-08 20:15:00	--	Nicks #watir: [benbeltran1 djinni fabrice31 fellu_ jarib jibay Remco s0ber voodoofish430 wapiflapi WOFall zeljko]
2012-05-08 20:15:00	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-08 20:15:07	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-09 09:58:27	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-09 09:58:27	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu jarib jibay Remco s0ber volter wapiflapi WOFall zeljko]
2012-05-09 09:58:27	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-05-09 09:58:27	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-09 10:20:41	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-09 10:51:11	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-09 15:37:16	-->	s0ber_ (~s0ber@114-36-228-144.dynamic.hinet.net) has joined #watir
2012-05-09 15:39:28	<--	s0ber (~s0ber@114-36-235-166.dynamic.hinet.net) has quit (Read error: Operation timed out)
2012-05-09 15:39:36	--	s0ber_ is now known as s0ber
2012-05-09 15:42:53	-->	wapiflap1 (wapiflapi@darksaber.tk) has joined #watir
2012-05-09 15:46:59	<--	wapiflapi (wapiflapi@darksaber.tk) has quit (Remote host closed the connection)
2012-05-09 16:22:22	-->	cheezy_ (~cheezy@69.54.48.158) has joined #watir
2012-05-09 16:25:38	<--	cheezy (~cheezy@69.54.48.158) has quit (Ping timeout: 260 seconds)
2012-05-09 16:30:55	<--	cheezy_ (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-05-10 09:52:23	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-10 09:52:23	--	Nicks #watir: [benbeltran cheezy djinni fabrice31 fellu jarib Remco s0ber wapiflap1 WOFall zeljko]
2012-05-10 09:52:23	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-10 09:52:23	--	Notice(zelazny.freenode.net): [freenode-info] help freenode weed out clonebots -- please register your IRC nick and auto-identify: http://freenode.net/faq.shtml#nicksetup
2012-05-10 09:52:24	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-10 10:59:35	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-10 11:10:56	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-05-10 11:46:56	-->	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has joined #watir
2012-05-10 11:51:58	<--	dougnoel (~IceChat77@173-14-113-109-richmond.hfc.comcastbusiness.net) has quit (Quit: Clap on! , Clap off! Clap@#&$NO CARRIER)
2012-05-10 12:28:00	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Ping timeout: 260 seconds)
2012-05-10 13:34:39	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-10 16:32:03	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-05-10 18:10:40		irc: disconnected from server
2012-05-10 18:11:02	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-10 18:11:02	--	Nicks #watir: [benbeltran benbeltran1 djinni fellu jarib Remco s0ber voodoofish430 wapiflap1 WOFall zeljko]
2012-05-10 18:11:02	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-10 18:11:08	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-10 20:00:41		irc: disconnected from server
2012-05-11 09:24:27	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-11 09:24:27	--	Nicks #watir: [benbeltran1 djinni Evgeny fabrice31 fellu jarib jibay Remco s0ber volter wapiflap1 WOFall zeljko]
2012-05-11 09:24:27	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-05-11 09:24:34	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-11 09:45:27	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-11 10:19:59	--	You are now known as benbeltran
2012-05-11 10:32:03	<--	Evgeny (b288fc54@gateway/web/freenode/ip.178.136.252.84) has quit (Quit: Page closed)
2012-05-11 10:36:29	-->	jibay_ (~jibay@ANancy-155-1-47-173.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-11 10:36:51	<--	jibay (~jibay@ANancy-155-1-12-174.w90-6.abo.wanadoo.fr) has quit (Read error: Operation timed out)
2012-05-11 10:56:00	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-05-11 11:11:54		irc: disconnected from server
2012-05-11 11:12:19	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-11 11:12:23	--	Nicks #watir: [benbeltran benbeltran1 djinni fellu jarib jibay_ Remco s0ber wapiflap1 WOFall zeljko]
2012-05-11 11:12:23	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-11 11:12:25	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-11 11:14:51	<--	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 252 seconds)
2012-05-11 11:29:19	<--	jibay_ (~jibay@ANancy-155-1-47-173.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 245 seconds)
2012-05-11 11:29:35	-->	jibay_ (~jibay@ANancy-155-1-24-159.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-11 12:19:19	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-11 12:23:57	<--	jibay_ (~jibay@ANancy-155-1-24-159.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 260 seconds)
2012-05-11 13:25:02	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-11 13:25:34	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-11 15:07:04	-->	jibay (~jibay@ANancy-155-1-47-101.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-11 15:54:45	<--	jibay (~jibay@ANancy-155-1-47-101.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 260 seconds)
2012-05-11 15:55:53	-->	jibay (~jibay@ANancy-155-1-54-195.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-11 17:38:28	<--	s0ber (~s0ber@114-25-193-187.dynamic.hinet.net) has quit (Ping timeout: 255 seconds)
2012-05-11 19:30:33		irc: disconnected from server
2012-05-13 14:13:51	-->	benbeltran1 (~benbeltra@200.76.90.235) has joined #watir
2012-05-13 14:13:52	--	Nicks #watir: [benbeltran1 djinni fellu jarib jarm0p jibay marekj Remco s0ber WOFall zeljko]
2012-05-13 14:13:52	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-13 14:13:59	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-13 20:46:54		irc: disconnected from server
2012-05-13 20:47:16	-->	benbeltran1 (~benbeltra@200.76.90.140) has joined #watir
2012-05-13 20:47:16	--	Nicks #watir: [benbeltran1 djinni fellu jarib jarm0p marekj Remco s0ber WOFall zeljko]
2012-05-13 20:47:16	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-13 20:47:23	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-13 21:04:25		irc: disconnected from server
2012-05-14 09:02:11	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-14 09:02:11	--	Nicks #watir: [benbeltran1 cheezy djinni fabrice31 fellu jarib jarm0p jibay marekj Remco s0ber volter WOFall zeljko]
2012-05-14 09:02:11	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-05-14 09:02:17	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-14 09:08:48	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-14 09:08:48	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/TVcfCA
2012-05-14 09:08:48	watirwd	[watir-webdriver/master] Fix for finding elements by data-* attribute using regexp. - Jari Bakken
2012-05-14 09:08:48	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-14 09:15:12	-->	travis-ci (~travis-ci@ec2-23-20-97-73.compute-1.amazonaws.com) has joined #watir
2012-05-14 09:15:12	travis-ci	[travis-ci] watir/watir-webdriver#89 (master - 738ef97 : Jari Bakken): The build passed.
2012-05-14 09:15:12	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/f65859f...738ef97
2012-05-14 09:15:12	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1327259
2012-05-14 09:15:12	<--	travis-ci (~travis-ci@ec2-23-20-97-73.compute-1.amazonaws.com) has left #watir
2012-05-14 09:44:38	--	You are now known as benbeltran
2012-05-14 09:58:26	-->	watirwd (~watirwd@sh3.rs.github.com) has joined #watir
2012-05-14 09:58:26	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/GDF2cQ
2012-05-14 09:58:26	watirwd	[watir-webdriver/master] Bump to version 0.5.8 - Jari Bakken
2012-05-14 09:58:26	<--	watirwd (~watirwd@sh3.rs.github.com) has left #watir
2012-05-14 10:21:18	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-05-14 11:19:44	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-05-14 11:39:10	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-05-14 13:22:33	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-14 14:44:16	<--	zeljko (u4950@gateway/web/irccloud.com/x-hxztibgnbiejfkjf) has quit (Ping timeout: 276 seconds)
2012-05-14 15:03:43	-->	zeljko (u4950@gateway/web/irccloud.com/x-dspfueupkdwwjfpv) has joined #watir
2012-05-14 16:24:37	-->	Erocksteady (~Erockstea@199.181.135.135) has joined #watir
2012-05-14 16:45:27	-->	s0ber_ (~s0ber@114-36-230-68.dynamic.hinet.net) has joined #watir
2012-05-14 16:47:24	<--	s0ber (~s0ber@114-25-192-78.dynamic.hinet.net) has quit (Ping timeout: 255 seconds)
2012-05-14 16:47:36	--	s0ber_ is now known as s0ber
2012-05-14 17:49:00	<--	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has quit (Quit: Ex-Chat)
2012-05-14 19:11:41		irc: disconnected from server
2012-05-14 19:22:24	-->	benbeltran (~benbeltra@200.76.90.149) has joined #watir
2012-05-14 19:22:24	--	Nicks #watir: [benbeltran djinni Erocksteady fabrice31 fellu jarib jarm0p jibay marekj Remco s0ber voodoofish430 WOFall zeljko]
2012-05-14 19:22:24	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-05-14 19:22:31	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-14 19:38:02	<--	jibay (~jibay@ANancy-155-1-54-195.w90-13.abo.wanadoo.fr) has quit (Remote host closed the connection)
2012-05-14 19:51:41		irc: disconnected from server
2012-05-14 20:13:04	-->	benbeltran (~benbeltra@200.76.90.231) has joined #watir
2012-05-14 20:13:04	--	Nicks #watir: [benbeltran djinni Erocksteady fabrice31 fellu jarib jarm0p marekj Remco s0ber voodoofish430 WOFall zeljko]
2012-05-14 20:13:04	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-05-14 20:13:11	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-14 20:35:03		irc: disconnected from server
2012-05-14 20:38:22	-->	benbeltran (~benbeltra@200.76.90.136) has joined #watir
2012-05-14 20:38:23	--	Nicks #watir: [benbeltran djinni Erocksteady fabrice31 fellu jarib jarm0p marekj Remco s0ber voodoofish430 WOFall zeljko]
2012-05-14 20:38:23	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-05-14 20:38:29	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-14 20:41:54		irc: disconnected from server
2012-05-14 20:42:19	-->	benbeltran1 (~benbeltra@200.76.90.139) has joined #watir
2012-05-14 20:42:19	--	Nicks #watir: [benbeltran benbeltran1 djinni Erocksteady fabrice31 fellu jarib jarm0p marekj Remco s0ber voodoofish430 WOFall zeljko]
2012-05-14 20:42:19	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-05-14 20:42:25	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-14 20:43:18	<--	benbeltran (~benbeltra@200.76.90.136) has quit (Ping timeout: 248 seconds)
2012-05-15 08:41:31		irc: disconnected from server
2012-05-15 08:41:45	-->	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-15 08:41:45	--	Nicks #watir: [benbeltran1 djinni Erocksteady fabrice31 fellu jarib jarm0p jibay marekj Remco s0ber volter WOFall zeljko]
2012-05-15 08:41:45	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-05-15 08:41:52	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 08:57:44	-->	jibay_ (~jibay@ANancy-155-1-30-40.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-15 09:00:36	<--	jibay (~jibay@ANancy-155-1-54-195.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 272 seconds)
2012-05-15 10:09:05	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-15 10:29:02	--	You are now known as benbeltran
2012-05-15 11:03:30	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-15 11:07:29	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (*.net *.split)
2012-05-15 11:07:57	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-15 11:23:22	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-15 11:25:38	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-15 11:27:17	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-05-15 14:33:42	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-15 14:34:09	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-15 15:48:18	-->	jibay__ (~jibay@ANancy-155-1-23-234.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-15 15:48:42	<--	jibay_ (~jibay@ANancy-155-1-30-40.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 252 seconds)
2012-05-15 21:01:39		irc: disconnected from server
2012-05-15 21:02:01	-->	benbeltran (~benbeltra@200.76.90.179) has joined #watir
2012-05-15 21:02:01	--	Nicks #watir: [benbeltran djinni Erocksteady fellu jarib jarm0p jibay__ marekj Remco s0ber WOFall zeljko]
2012-05-15 21:02:01	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-15 21:02:07	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 21:07:01		irc: disconnected from server
2012-05-15 21:07:24	-->	benbeltran1 (~benbeltra@200.76.90.179) has joined #watir
2012-05-15 21:07:24	--	Nicks #watir: [benbeltran benbeltran1 djinni Erocksteady fellu jarib jarm0p jibay__ marekj Remco s0ber WOFall zeljko]
2012-05-15 21:07:24	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-05-15 21:07:30	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 21:10:31	<--	benbeltran (~benbeltra@200.76.90.179) has quit (Ping timeout: 244 seconds)
2012-05-15 21:24:28		irc: disconnected from server
2012-05-15 22:44:38	-->	benbeltran1 (~benbeltra@200.76.90.252) has joined #watir
2012-05-15 22:44:38	--	Nicks #watir: [benbeltran1 djinni Erocksteady fellu jarib jarm0p marekj Remco s0ber WOFall zeljko]
2012-05-15 22:44:38	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-15 22:44:44	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 22:54:18		irc: disconnected from server
2012-05-15 22:57:43	-->	benbeltran1 (~benbeltra@200.76.90.139) has joined #watir
2012-05-15 22:57:43	--	Nicks #watir: [benbeltran1 djinni Erocksteady fellu jarib jarm0p marekj Remco s0ber WOFall zeljko]
2012-05-15 22:57:43	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-15 22:57:50	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 23:38:53		irc: disconnected from server
2012-05-15 23:40:05	-->	benbeltran1 (~benbeltra@200.76.90.226) has joined #watir
2012-05-15 23:40:05	--	Nicks #watir: [benbeltran1 djinni Erocksteady fellu jarib jarm0p marekj Remco s0ber WOFall zeljko]
2012-05-15 23:40:05	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-15 23:40:11	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 23:48:53		irc: disconnected from server
2012-05-15 23:49:17	-->	benbeltran2 (~benbeltra@200.76.90.201) has joined #watir
2012-05-15 23:49:17	--	Nicks #watir: [benbeltran1 benbeltran2 djinni Erocksteady fellu jarib jarm0p marekj Remco s0ber WOFall zeljko]
2012-05-15 23:49:17	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-15 23:49:24	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-15 23:50:34	<--	benbeltran1 (~benbeltra@200.76.90.226) has quit (Ping timeout: 244 seconds)
2012-05-16 08:44:35		irc: disconnected from server
2012-05-16 08:44:51	-->	benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-16 08:44:51	--	Nicks #watir: [benbeltran2 djinni easonhan Erocksteady fellu jarib jarm0p jibay_ marekj Remco s0ber volter WOFall zeljko]
2012-05-16 08:44:51	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-05-16 08:44:57	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-16 11:02:33	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-05-16 11:51:52	<--	jarib (~jarib@unaffiliated/jarib) has quit (Ping timeout: 252 seconds)
2012-05-16 11:53:42	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-16 12:54:57	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-16 15:28:19	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-16 15:29:14	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-16 16:59:25	-->	jibay__ (~jibay@ANancy-155-1-52-214.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-16 17:00:09	<--	jibay_ (~jibay@ANancy-155-1-1-181.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 245 seconds)
2012-05-16 17:17:32	<--	Erocksteady (~Erockstea@199.181.135.135) has left #watir
2012-05-16 21:27:10		irc: disconnected from server
2012-05-16 21:27:30	-->	benbeltran2 (~benbeltra@200.76.90.128) has joined #watir
2012-05-16 21:27:31	--	Nicks #watir: [benbeltran2 djinni fellu jarib jarm0p marekj Remco s0ber WOFall zeljko]
2012-05-16 21:27:31	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-16 21:27:38	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-17 08:40:26		irc: disconnected from server
2012-05-17 08:40:44	-->	benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-17 08:40:45	--	Nicks #watir: [benbeltran2 djinni fellu jarib jarm0p jibay marekj Remco s0ber WOFall zeljko]
2012-05-17 08:40:45	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-17 08:40:52	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-17 09:58:00	-->	cheezy (433260a2@gateway/web/freenode/ip.67.50.96.162) has joined #watir
2012-05-17 10:35:28	<--	cheezy (433260a2@gateway/web/freenode/ip.67.50.96.162) has quit (Quit: Page closed)
2012-05-17 12:31:45	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-17 13:17:17	--	You are now known as benbeltran
2012-05-17 16:15:44	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-17 16:17:24	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-17 18:18:01		irc: disconnected from server
2012-05-18 09:13:14	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-18 09:13:14	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0p jibay Remco s0ber WOFall zeljko]
2012-05-18 09:13:14	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-18 09:13:20	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-18 09:37:21	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-18 09:37:57	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-18 10:16:00	<--	jibay (~jibay@ANancy-155-1-52-214.w90-13.abo.wanadoo.fr) has quit (*.net *.split)
2012-05-18 10:16:18	-->	jibay (~jibay@ANancy-155-1-52-214.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-18 11:08:38	<--	jibay (~jibay@ANancy-155-1-52-214.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 240 seconds)
2012-05-18 11:20:56	-->	jibay (~jibay@ANancy-155-1-9-22.w90-6.abo.wanadoo.fr) has joined #watir
2012-05-18 12:49:26	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-18 13:43:01	zeljko	I can not find how to get value o class attribute for element
2012-05-18 13:43:19	zeljko	#class of course returns Watir::TableDataCell
2012-05-18 13:43:33	zeljko	I know there is a way, just can not find it at the moment
2012-05-18 13:45:01	zeljko	found it
2012-05-18 13:45:04	zeljko	#attribute_value
2012-05-18 15:25:43	-->	s0ber_ (~s0ber@114-36-246-23.dynamic.hinet.net) has joined #watir
2012-05-18 15:28:06	<--	s0ber (~s0ber@114-25-201-216.dynamic.hinet.net) has quit (Ping timeout: 265 seconds)
2012-05-18 15:28:11	--	s0ber_ is now known as s0ber
2012-05-18 15:34:42	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-18 15:35:28	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-18 15:35:33	jarib	zeljko: #class_name
2012-05-18 15:49:48	<--	jibay (~jibay@ANancy-155-1-9-22.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-05-18 16:03:05	-->	jibay (~jibay@ANancy-155-1-20-28.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-18 16:07:07	zeljko	jarib: thanks, I was pretty sure we had #class_name once, but I could not find it in method list at http://rdoc.info/gems/watir-webdriver/
2012-05-18 16:07:24	zeljko	and I remembered #attribute_value
2012-05-18 18:16:12		irc: disconnected from server
2012-05-18 19:19:30	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-18 19:19:30	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0p jibay Remco s0ber voodoofish430 WOFall zeljko]
2012-05-18 19:19:30	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-18 19:19:36	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-18 19:49:25	<--	jibay (~jibay@ANancy-155-1-20-28.w90-13.abo.wanadoo.fr) has quit (Remote host closed the connection)
2012-05-20 00:46:36		irc: disconnected from server
2012-05-20 22:05:59	-->	benbeltran (~benbeltra@200.76.90.223) has joined #watir
2012-05-20 22:05:59	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0p Remco s0ber WOFall zeljko]
2012-05-20 22:05:59	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-20 22:06:05	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-20 22:32:44		irc: disconnected from server
2012-05-20 22:33:08	-->	benbeltran (~benbeltra@200.76.90.142) has joined #watir
2012-05-20 22:33:08	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0p Remco s0ber WOFall zeljko]
2012-05-20 22:33:08	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-20 22:33:08	--	Notice(verne.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-05-20 22:33:14	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-20 22:58:45	<--	jarm0p (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has quit (Quit: Disconnecting from stoned server.)
2012-05-20 23:00:28	-->	jarm0 (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has joined #watir
2012-05-21 00:25:09		irc: disconnected from server
2012-05-21 09:00:41	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-21 09:00:41	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter WOFall zeljko]
2012-05-21 09:00:41	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-21 09:00:47	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-21 10:17:10	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-21 13:06:24	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-21 15:04:40	-->	jibay_ (~jibay@ANancy-155-1-4-131.w90-6.abo.wanadoo.fr) has joined #watir
2012-05-21 15:04:56	<--	jibay (~jibay@ANancy-155-1-4-236.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 244 seconds)
2012-05-21 15:24:17	-->	s0ber_ (~s0ber@114-36-232-211.dynamic.hinet.net) has joined #watir
2012-05-21 15:24:53	<--	s0ber (~s0ber@114-36-246-23.dynamic.hinet.net) has quit (Read error: Operation timed out)
2012-05-21 15:25:05	--	s0ber_ is now known as s0ber
2012-05-21 16:06:56	<--	jibay_ (~jibay@ANancy-155-1-4-131.w90-6.abo.wanadoo.fr) has quit (Ping timeout: 244 seconds)
2012-05-21 19:58:36		irc: disconnected from server
2012-05-21 20:41:20	-->	benbeltran (~benbeltra@200.76.90.150) has joined #watir
2012-05-21 20:41:20	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber voodoofish430 WOFall zeljko]
2012-05-21 20:41:20	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-21 20:41:26	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-21 20:54:53	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Quit: Leaving.)
2012-05-22 09:03:35	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-22 09:03:35	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber volter WOFall zeljko]
2012-05-22 09:03:35	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-22 09:03:35	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-22 09:14:35	-->	watirwd (~watirwd@sh3.rs.github.com) has joined #watir
2012-05-22 09:14:35	watirwd	[watir-webdriver] jarib pushed 13 new commits to master: http://git.io/Fn-beA
2012-05-22 09:14:35	watirwd	[watir-webdriver/master] Initial commit implementing Alert API - Alex Rodionov
2012-05-22 09:14:35	watirwd	[watir-webdriver/master] deprecations - Alex Rodionov
2012-05-22 09:14:35	watirwd	[watir-webdriver/master] Make #assert_exists private. Ref: https://github.com/watir/watir-webdriver/pull/142#r779433 - Alex Rodionov
2012-05-22 09:14:35	<--	watirwd (~watirwd@sh3.rs.github.com) has left #watir
2012-05-22 09:20:36	-->	travis-ci (~travis-ci@ec2-23-20-36-151.compute-1.amazonaws.com) has joined #watir
2012-05-22 09:20:36	travis-ci	[travis-ci] watir/watir-webdriver#91 (master - a5679f9 : Jari Bakken): The build passed.
2012-05-22 09:20:36	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/b8270f3...a5679f9
2012-05-22 09:20:36	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1400353
2012-05-22 09:20:36	<--	travis-ci (~travis-ci@ec2-23-20-36-151.compute-1.amazonaws.com) has left #watir
2012-05-22 09:50:47	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-22 09:50:47	watirwd	[watir-webdriver] jarib pushed 2 new commits to master: http://git.io/CzrASw
2012-05-22 09:50:47	watirwd	[watir-webdriver/master] Fix documentation links. - Jari Bakken
2012-05-22 09:50:47	watirwd	[watir-webdriver/master] Move API links, add watirwebdriver.com - Jari Bakken
2012-05-22 09:50:47	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-22 09:57:01	-->	travis-ci (~travis-ci@ec2-23-20-36-151.compute-1.amazonaws.com) has joined #watir
2012-05-22 09:57:01	travis-ci	[travis-ci] watir/watir-webdriver#92 (master - c989895 : Jari Bakken): The build passed.
2012-05-22 09:57:01	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/a5679f9...c989895
2012-05-22 09:57:01	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1400629
2012-05-22 09:57:01	<--	travis-ci (~travis-ci@ec2-23-20-36-151.compute-1.amazonaws.com) has left #watir
2012-05-22 10:12:55	<--	zeljko (u4950@gateway/web/irccloud.com/x-dspfueupkdwwjfpv) has quit (Remote host closed the connection)
2012-05-22 10:40:24	-->	zeljko (u4950@gateway/web/irccloud.com/x-dghhvddbgzbzmopn) has joined #watir
2012-05-22 11:03:25	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-22 11:06:17	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-22 11:06:48	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-22 13:04:43	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-22 13:59:20	-->	jibay (~jibay@ANancy-155-1-19-76.w90-13.abo.wanadoo.fr) has joined #watir
2012-05-22 17:06:44	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-22 17:09:19	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-22 19:21:59		irc: disconnected from server
2012-05-23 00:30:10	-->	benbeltran (~benbeltra@200.76.90.218) has joined #watir
2012-05-23 00:30:10	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-23 00:30:10	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-23 00:30:17	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-23 08:41:33		irc: disconnected from server
2012-05-23 08:41:50	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-23 08:41:50	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter WOFall zeljko]
2012-05-23 08:41:50	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-23 08:41:57	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-23 10:43:13	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-23 11:02:29	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-05-23 12:30:09	-->	Jenna (46a7aa02@gateway/web/freenode/ip.70.167.170.2) has joined #watir
2012-05-23 12:40:28	-->	worksonmymachine (46a7aa02@gateway/web/freenode/ip.70.167.170.2) has joined #watir
2012-05-23 12:44:21	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-23 12:48:35	<--	worksonmymachine (46a7aa02@gateway/web/freenode/ip.70.167.170.2) has quit (Quit: Page closed)
2012-05-23 13:07:31	<--	Jenna (46a7aa02@gateway/web/freenode/ip.70.167.170.2) has quit (Ping timeout: 245 seconds)
2012-05-23 16:34:02	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-23 16:35:02	zeljko	chrismcmahon: welcome :)
2012-05-23 16:35:13	chrismcmahon	hi zeljko
2012-05-23 16:35:56	chrismcmahon	I'm doing more experiments with my page-object prototype while most of my colleagues are going to Berlin :)
2012-05-23 16:36:28	zeljko	sounds like you got a better deal :)
2012-05-23 16:40:00	zeljko	I have been using page-object gem on two projects, and I like it so far
2012-05-23 16:40:15	zeljko	way better than my own page object implementation
2012-05-23 16:41:44	chrismcmahon	right now I'm looking at how to abstract a method associated with one page so that it can be used on the spec for a different page.  e.g. I have a spec for a login page, and a spec for another page that navigates to the login page, and I'd like that spec to use the login() method.
2012-05-23 16:43:14	zeljko	ok, so to generalize, you would like a method from one class to be used in another class?
2012-05-23 16:43:29	zeljko	you can do it two ways: inheritance and mixins
2012-05-23 16:43:40	zeljko	page-object gem does it with mixins
2012-05-23 16:44:07	zeljko	create a module that has the method, then include the module in all classes that you want to have access to the method
2012-05-23 16:44:14	zeljko	do you want example code?
2012-05-23 16:44:36	chrismcmahon	zeljko: thanks for the clue :) I found something Cheezy had said about that back around 2010
2012-05-23 16:45:09	zeljko	I have already forked your repo, I can show you how to implement mixin for login_with
2012-05-23 16:45:13	zeljko	just let me know
2012-05-23 16:45:44	chrismcmahon	zeljko: I'm fairly clear on the mechanics of that, but I'm not sure where the Modules would be stored in a proper page-object project.  /lib somewhere?
2012-05-23 16:46:36	chrismcmahon	zeljko: I updated my repo with a failing example, but don't knock yourself out.
2012-05-23 16:47:57	zeljko	let me see
2012-05-23 16:47:57	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-23 16:49:50	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-23 16:50:11	zeljko	can you paste the link to the failing example?
2012-05-23 16:51:52	chrismcmahon	https://github.com/chrismcmahon/Page-Object-WMF-spike/blob/master/spec/upload_wizard/upload_wizard_spec.rb
2012-05-23 16:52:35	chrismcmahon	zeljko: right now it naively tries to call 'login_with' but it doesn't know about the LoginPage object
2012-05-23 16:53:05	chrismcmahon	the thing to do is to make 'login_with' a Module and then include it
2012-05-23 16:53:55	zeljko	did you see how I did it?
2012-05-23 16:53:56	zeljko	https://github.com/zeljkofilipin/Page-Object-WMF-spike/commit/2d5a3565a2874ad33dec3334a88ea487bcb3f589
2012-05-23 16:54:25	zeljko	wizard page does not have to know how to log in, login page has to know that, right?
2012-05-23 16:54:41	zeljko	you are redirected to login page, you are not logging in from wizard page, right?
2012-05-23 16:54:44	chrismcmahon	right
2012-05-23 16:55:44	zeljko	but your question is where do modules live?
2012-05-23 16:55:56	zeljko	I think that is a question for chzy
2012-05-23 16:56:08	zeljko	I just leave them in the same folder as pages, for now
2012-05-23 16:56:17	chrismcmahon	yep.  in the meantime, thanks for the fix!
2012-05-23 16:56:29	zeljko	no problem
2012-05-23 16:56:34	chrismcmahon	that's nifty, didn't think of that
2012-05-23 16:57:10	zeljko	well, since the modules have stuff that pages need, I keep them in the same folder
2012-05-23 16:57:26	zeljko	but a separate folder would probably be a better place
2012-05-23 17:01:59	zeljko	and also, stack overflow if _the best_ think for code related questions
2012-05-23 17:03:26	chrismcmahon	sweet, that not only worked, it didn't even reload LoginPage when I thought it would. thanks zeljko
2012-05-23 17:03:50	chrismcmahon	let me change the password back to fake values and I'll push the change
2012-05-23 17:05:25	zeljko	oh yes, if you use on_page instead of visit_page, then it does not reload page
2012-05-23 17:06:00	zeljko	and if you update to newer version of page-object gem, you will be able to use #on and #visit instead of #on_page and #visit_page
2012-05-23 17:07:53	chrismcmahon	nice.  just pushed.  my change has an assertion along the way to logging in
2012-05-23 17:08:14	 *	chrismcmahon is sure this'll be second nature soon enough :)
2012-05-23 17:10:19	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-23 17:29:03	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-23 17:36:57	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-23 17:39:05	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-23 17:41:40	zeljko	good night
2012-05-23 17:49:05	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-23 17:49:32	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-23 21:56:04		irc: disconnected from server
2012-05-23 21:56:25	-->	benbeltran (~benbeltra@200.76.90.246) has joined #watir
2012-05-23 21:56:26	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-23 21:56:26	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-23 21:56:32	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-24 08:47:33		irc: disconnected from server
2012-05-24 08:47:50	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-24 08:47:50	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter WOFall zeljko]
2012-05-24 08:47:50	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-24 08:47:56	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-24 09:55:09	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-24 10:04:21	-->	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has joined #watir
2012-05-24 10:32:54	<--	kdnewton (~waggy@S01060c607607263d.ok.shawcable.net) has quit (Ping timeout: 244 seconds)
2012-05-24 11:00:20	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-24 11:26:56	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-05-24 11:54:34	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-24 12:01:08	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 12:02:24	chrismcmahon_	here's an odd thing in page-object, seems like this should work.  I have a checkbox in a page <input id="mwe-upwiz-skip" type="checkbox" name="skip" value="1">  ...
2012-05-24 12:03:35	chrismcmahon_	in my PageObject I have this defined as checkbox(:skip, :id => 'mwe-upwiz-skip'), and in my spec I have @current_page.check_skip
2012-05-24 12:04:02	chrismcmahon_	running the test shows "undefined method `check_skip' for nil:NilClass"
2012-05-24 12:07:47	zeljko	sounds like @current_page is not defined
2012-05-24 12:07:53	zeljko	I never use @current_page
2012-05-24 12:08:01	zeljko	you should use something like this
2012-05-24 12:08:18	zeljko	PageName.check_skip
2012-05-24 12:08:26	zeljko	and if there are more actions on one page
2012-05-24 12:08:29	chrismcmahon_	cool, I was starting to wonder how to refactor that
2012-05-24 12:08:52	zeljko	actually, the above should be on(PageName).check_skip
2012-05-24 12:09:02	zeljko	or visit(PageName).check_skip
2012-05-24 12:09:08	chrismcmahon_	got it
2012-05-24 12:09:20	zeljko	and if there are more than one action on the same page then
2012-05-24 12:09:37	zeljko	on(PageName) do |page|
2012-05-24 12:09:42	zeljko	page.check_skip
2012-05-24 12:09:48	zeljko	page.something_else
2012-05-24 12:09:49	zeljko	end
2012-05-24 12:09:55	chrismcmahon_	right, I've seen that
2012-05-24 12:09:58	chrismcmahon_	thanks again
2012-05-24 12:10:08	zeljko	no problem
2012-05-24 12:10:37	zeljko	I get no notification when you post here, so ping me on twitter, that appears on my phone
2012-05-24 12:10:42	zeljko	and I will get here
2012-05-24 12:13:27	chrismcmahon_	progress!
2012-05-24 12:21:43	chrismcmahon_	I think something is wrong with how I'm defining this checkbox
2012-05-24 12:21:55	chrismcmahon_	Failure/Error: page.skip.should be_true
2012-05-24 12:21:55	chrismcmahon_	     NoMethodError:
2012-05-24 12:21:55	chrismcmahon_	       undefined method `skip' for #<UploadWizardPage:0x1024d66d0>
2012-05-24 12:40:16	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 12:40:47	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 12:41:50	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 12:43:17	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 12:48:50	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 12:57:58	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:05:10	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:06:02	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:11:05	zeljko	chrismcmahon_: could you post links to both page object file and where it is used?
2012-05-24 13:11:54	chrismcmahon_	zeljko: I'm off on another project for a bit, I'll keep at this a little longer (thanks, though)
2012-05-24 13:13:24	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:14:07	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:17:01	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:18:37	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:23:30	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-24 13:23:31	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:24:15	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-24 13:24:44	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:25:59	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:27:08	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Ping timeout: 244 seconds)
2012-05-24 13:27:12	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:28:07	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-24 13:30:47	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:31:45	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:35:11	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-24 13:35:11	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:35:46	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-24 13:36:13	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:53:29	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 13:54:20	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 13:59:35	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 14:08:57	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 14:13:52	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 14:15:02	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 14:16:34	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 14:17:34	-->	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 14:25:55	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-24 14:25:55	--	chrismcmahon_ is now known as chrismcmahon
2012-05-24 14:26:25	--	chrismcmahon is now known as Guest77118
2012-05-24 14:29:03	--	Guest77118 is now known as chrismcmahon_
2012-05-24 14:37:06	<--	chrismcmahon_ (~christoph@c-76-26-103-112.hsd1.nm.comcast.net) has quit (Read error: Connection reset by peer)
2012-05-24 16:08:19	<--	s0ber (~s0ber@114-36-232-211.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-05-24 16:09:49	-->	s0ber (~s0ber@114-36-224-219.dynamic.hinet.net) has joined #watir
2012-05-24 17:47:22	-->	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has joined #watir
2012-05-24 17:48:59	chrismcmahon	proper syntax for page-object "when_visible" method?  I'm not sure how this is intended to be used (but I could use it)
2012-05-24 17:50:42	<--	chrismcmahon (~chrismcma@wikimedia/Cmmcmahon) has quit (Read error: Connection reset by peer)
2012-05-24 18:08:24	-->	chrismcmahon (~chrismcma@c-76-26-103-112.hsd1.nm.comcast.net) has joined #watir
2012-05-24 21:36:39		irc: disconnected from server
2012-05-25 09:03:58	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-25 09:03:58	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 jibay Remco s0ber WOFall zeljko]
2012-05-25 09:03:58	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-25 09:04:04	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-25 11:27:55	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-25 11:29:36	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-25 13:06:33	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-25 14:34:26	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-25 14:36:07	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-25 17:26:21	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-25 17:27:07	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-25 20:28:55		irc: disconnected from server
2012-05-25 20:29:09	-->	benbeltran (~benbeltra@187-163-10-148.static.axtel.net) has joined #watir
2012-05-25 20:29:09	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 jibay Remco s0ber WOFall zeljko]
2012-05-25 20:29:09	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-25 20:29:15	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-25 20:34:04	<--	jibay (~jibay@ANancy-155-1-12-222.w90-6.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-05-26 06:21:34		irc: disconnected from server
2012-05-27 01:53:41	-->	benbeltran (~benbeltra@200.76.90.183) has joined #watir
2012-05-27 01:53:41	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-27 01:53:41	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-27 01:53:48	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-27 14:41:11		irc: disconnected from server
2012-05-27 14:41:33	-->	benbeltran (~benbeltra@200.76.90.138) has joined #watir
2012-05-27 14:41:33	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-27 14:41:33	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-27 14:41:39	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-27 15:35:04		irc: disconnected from server
2012-05-27 15:35:29	-->	benbeltran (~benbeltra@200.76.90.138) has joined #watir
2012-05-27 15:35:29	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-27 15:35:29	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-27 15:35:35	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-27 15:45:44	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-27 15:45:57	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-27 16:04:02		irc: disconnected from server
2012-05-27 16:04:24	-->	benbeltran (~benbeltra@200.76.90.138) has joined #watir
2012-05-27 16:04:24	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-27 16:04:24	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-27 16:04:30	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-27 16:13:37		irc: disconnected from server
2012-05-28 10:09:22	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-28 10:09:22	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 jibay Remco s0ber WOFall zeljko]
2012-05-28 10:09:22	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-28 10:09:24	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-28 15:52:26	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-28 15:52:27	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/bPpk7Q
2012-05-28 15:52:27	watirwd	[watir-webdriver/master] Fix NameError in alert implementation. - Jari Bakken
2012-05-28 15:52:27	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-28 15:58:26	-->	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has joined #watir
2012-05-28 15:58:26	travis-ci	[travis-ci] watir/watir-webdriver#97 (master - a1043dd : Jari Bakken): The build passed.
2012-05-28 15:58:26	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/b72151e...a1043dd
2012-05-28 15:58:26	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1459715
2012-05-28 15:58:26	<--	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has left #watir
2012-05-28 16:04:04	-->	watirspec (~watirspec@sh3.rs.github.com) has joined #watir
2012-05-28 16:04:04	watirspec	[watirspec] jarib pushed 1 new commit to master: http://git.io/G5ueRQ
2012-05-28 16:04:05	watirspec	[watirspec/master] Spec for dl.to_hash. Closes #27. - Jari Bakken
2012-05-28 16:04:05	<--	watirspec (~watirspec@sh3.rs.github.com) has left #watir
2012-05-28 16:04:23	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-28 16:04:23	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/xm6-qg
2012-05-28 16:04:23	watirwd	[watir-webdriver/master] Implement Watir::Dlist#to_hash - Jari Bakken
2012-05-28 16:04:23	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-28 16:12:01	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-28 16:12:01	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/S3NQow
2012-05-28 16:12:01	watirwd	[watir-webdriver/master] Bump version to 0.6.1 - Jari Bakken
2012-05-28 16:12:01	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-28 16:12:06	-->	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has joined #watir
2012-05-28 16:12:06	travis-ci	[travis-ci] watir/watir-webdriver#98 (master - 628eecc : Jari Bakken): The build passed.
2012-05-28 16:12:06	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/a1043dd...628eecc
2012-05-28 16:12:06	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1459841
2012-05-28 16:12:06	<--	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has left #watir
2012-05-28 16:19:47	-->	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has joined #watir
2012-05-28 16:19:47	travis-ci	[travis-ci] watir/watir-webdriver#99 (master - dad9285 : Jari Bakken): The build was broken.
2012-05-28 16:19:47	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/628eecc...dad9285
2012-05-28 16:19:47	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1459917
2012-05-28 16:19:47	<--	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has left #watir
2012-05-28 16:29:42	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-28 16:29:42	watirwd	[watir-webdriver] jarib pushed 1 new commit to master: http://git.io/VEAxtg
2012-05-28 16:29:42	watirwd	[watir-webdriver/master] Bump a few timeouts for travis - Jari Bakken
2012-05-28 16:29:42	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-28 16:37:37	-->	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has joined #watir
2012-05-28 16:37:37	travis-ci	[travis-ci] watir/watir-webdriver#100 (master - 96e8a61 : Jari Bakken): The build was fixed.
2012-05-28 16:37:37	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/dad9285...96e8a61
2012-05-28 16:37:37	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1460037
2012-05-28 16:37:37	<--	travis-ci (~travis-ci@ec2-23-20-56-117.compute-1.amazonaws.com) has left #watir
2012-05-28 17:40:24	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-28 17:42:05	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-28 19:26:18		irc: disconnected from server
2012-05-28 22:20:54	-->	benbeltran (~benbeltra@200.76.90.246) has joined #watir
2012-05-28 22:20:54	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-28 22:20:54	--	Channel #watir: 9 nicks (0 ops, 0 halfops, 0 voices, 9 normals)
2012-05-28 22:21:00	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-29 08:56:17		irc: disconnected from server
2012-05-29 08:56:35	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-29 08:56:35	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter_ WOFall zeljko]
2012-05-29 08:56:35	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-29 08:56:41	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-29 09:31:43	<--	volter_ (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-05-29 12:45:46	-->	s0ber_ (~s0ber@114-36-237-56.dynamic.hinet.net) has joined #watir
2012-05-29 12:47:56	<--	s0ber (~s0ber@114-36-237-56.dynamic.hinet.net) has quit (Ping timeout: 256 seconds)
2012-05-29 12:48:05	--	s0ber_ is now known as s0ber
2012-05-29 12:55:52	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-29 13:16:30	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-05-29 13:16:43	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-05-29 13:57:41	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-29 13:57:41	watirwd	[watir-webdriver] jarib pushed 2 new commits to selenium-webdriver-testing: http://git.io/yaGBjg
2012-05-29 13:57:41	watirwd	[watir-webdriver/selenium-webdriver-testing] Merge branch 'master', remote-tracking branch 'origin/HEAD' into selenium-webdriver-testing - Jari Bakken
2012-05-29 13:57:41	watirwd	[watir-webdriver/selenium-webdriver-testing] Testing selenium-webdriver 2.22.0.rc2 - Jari Bakken
2012-05-29 13:57:41	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-29 14:05:25	-->	travis-ci (~travis-ci@ec2-107-21-64-26.compute-1.amazonaws.com) has joined #watir
2012-05-29 14:05:25	travis-ci	[travis-ci] watir/watir-webdriver#101 (selenium-webdriver-testing - cb601ca : Jari Bakken): The build was broken.
2012-05-29 14:05:25	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/2eab131...cb601ca
2012-05-29 14:05:25	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1468909
2012-05-29 14:05:25	<--	travis-ci (~travis-ci@ec2-107-21-64-26.compute-1.amazonaws.com) has left #watir
2012-05-29 16:12:21	-->	watirwd (~watirwd@sh2.rs.github.com) has joined #watir
2012-05-29 16:12:21	watirwd	[watir-webdriver] jarib pushed 1 new commit to selenium-webdriver-testing: http://git.io/nv1g3A
2012-05-29 16:12:21	watirwd	[watir-webdriver/selenium-webdriver-testing] Bump to 2.22.0.rc3 - Jari Bakken
2012-05-29 16:12:21	<--	watirwd (~watirwd@sh2.rs.github.com) has left #watir
2012-05-29 16:21:05	-->	travis-ci (~travis-ci@ec2-107-21-64-26.compute-1.amazonaws.com) has joined #watir
2012-05-29 16:21:05	travis-ci	[travis-ci] watir/watir-webdriver#102 (selenium-webdriver-testing - 14ce699 : Jari Bakken): The build was fixed.
2012-05-29 16:21:05	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/cb601ca...14ce699
2012-05-29 16:21:05	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1470268
2012-05-29 16:21:05	<--	travis-ci (~travis-ci@ec2-107-21-64-26.compute-1.amazonaws.com) has left #watir
2012-05-29 17:31:13	<--	jibay (~jibay@ANancy-155-1-12-222.w90-6.abo.wanadoo.fr) has quit (Quit: Leaving)
2012-05-29 18:16:07		irc: disconnected from server
2012-05-29 20:28:54	-->	benbeltran (~benbeltra@200.76.90.155) has joined #watir
2012-05-29 20:28:55	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarm0 Remco s0ber voodoofish4301 WOFall zeljko]
2012-05-29 20:28:55	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-29 20:29:02	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-29 21:22:40		irc: disconnected from server
2012-05-29 21:23:04	-->	benbeltran (~benbeltra@200.76.90.155) has joined #watir
2012-05-29 21:23:05	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber voodoofish4301 WOFall zeljko]
2012-05-29 21:23:05	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-29 21:23:11	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-29 21:39:22	<--	voodoofish4301 (~mtorres@NAT10.pas.idealab.com) has quit (Quit: Leaving.)
2012-05-29 23:17:59		irc: disconnected from server
2012-05-29 23:18:20	-->	benbeltran (~benbeltra@200.76.90.242) has joined #watir
2012-05-29 23:18:21	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-29 23:18:21	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-29 23:18:28	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-30 08:51:16		irc: disconnected from server
2012-05-30 08:51:32	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-30 08:51:32	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter WOFall zeljko]
2012-05-30 08:51:32	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-05-30 08:51:40	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-30 09:50:35	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-05-30 13:29:10	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-30 19:21:49		irc: disconnected from server
2012-05-30 23:44:34	-->	benbeltran (~benbeltra@200.76.90.152) has joined #watir
2012-05-30 23:44:34	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber WOFall zeljko]
2012-05-30 23:44:34	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-05-30 23:44:41	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-31 00:12:57		irc: disconnected from server
2012-05-31 09:01:29	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-05-31 09:01:29	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber volter WOFall zeljko]
2012-05-31 09:01:29	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-05-31 09:01:36	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-05-31 10:22:33	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-05-31 11:16:58	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-31 12:04:53	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Ping timeout: 248 seconds)
2012-05-31 12:05:10	-->	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has joined #watir
2012-05-31 12:33:22	-->	Steve-W (~extremeto@li151-44.members.linode.com) has joined #watir
2012-05-31 12:33:46	Steve-W	Hi Guys
2012-05-31 12:34:12	Steve-W	Is this an appropriate place to ask for a bit of help?
2012-05-31 13:10:22	<--	voodoofish430 (~mtorres@NAT8.pas.idealab.com) has left #watir
2012-05-31 13:24:41	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-05-31 17:44:58	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Quit: Leaving.)
2012-05-31 22:03:46		irc: disconnected from server
2012-06-01 09:20:17	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-01 09:20:17	--	Nicks #watir: [benbeltran djinni fabrice31 fellu jarib jarm0 Remco s0ber Steve-W volter WOFall zeljko]
2012-06-01 09:20:17	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-01 09:20:24	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-01 10:14:48	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-01 11:14:04	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-06-01 16:04:49	-->	s0ber_ (~s0ber@114-36-225-112.dynamic.hinet.net) has joined #watir
2012-06-01 16:07:04	<--	s0ber (~s0ber@114-36-237-56.dynamic.hinet.net) has quit (Ping timeout: 265 seconds)
2012-06-01 16:07:26	--	s0ber_ is now known as s0ber
2012-06-01 19:26:23		irc: disconnected from server
2012-06-01 19:31:44	-->	benbeltran (~benbeltra@189.169.132.250) has joined #watir
2012-06-01 19:31:44	--	Nicks #watir: [benbeltran djinni fellu jarib jarm0 Remco s0ber Steve-W WOFall zeljko]
2012-06-01 19:31:44	--	Channel #watir: 10 nicks (0 ops, 0 halfops, 0 voices, 10 normals)
2012-06-01 19:31:51	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-02 14:24:22		irc: disconnected from server
2012-06-02 16:07:07	-->	benbeltran (~benbeltra@200.76.90.142) has joined #watir
2012-06-02 16:07:07	--	Nicks #watir: [benbeltran cheezy djinni fellu jarib jarm0 jibay_ Remco s0ber Steve-W WOFall zeljko]
2012-06-02 16:07:07	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-02 16:07:07	--	Notice(lindbohm.freenode.net): [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-06-02 16:07:14	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-02 22:43:33		irc: disconnected from server
2012-06-04 09:10:36	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-04 09:10:36	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 s0ber volter WOFall zeljko]
2012-06-04 09:10:36	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-06-04 09:10:41	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-04 09:26:01	-->	Remco (~remco@unaffiliated/remco) has joined #watir
2012-06-04 09:42:35	<--	Remco (~remco@unaffiliated/remco) has quit (Quit: brb)
2012-06-04 09:46:22	-->	Remco (~remco@unaffiliated/remco) has joined #watir
2012-06-04 11:21:19	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (*.net *.split)
2012-06-04 11:31:23	-->	fabrice31 (~fabrice31@89.30.127.162) has joined #watir
2012-06-04 12:28:20	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-04 13:51:55	-->	kai__ (40388409@gateway/web/freenode/ip.64.56.132.9) has joined #watir
2012-06-04 14:02:38	<--	kai__ (40388409@gateway/web/freenode/ip.64.56.132.9) has left #watir
2012-06-04 15:08:36	<--	s0ber (~s0ber@114-36-225-112.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-06-04 15:10:31	-->	s0ber (~s0ber@114-36-236-70.dynamic.hinet.net) has joined #watir
2012-06-05 09:43:55		irc: disconnected from server
2012-06-05 09:44:12	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-05 09:44:12	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0p jibay Remco s0ber volter WOFall zeljko]
2012-06-05 09:44:12	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-05 09:44:16	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-05 12:34:45	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-06 08:00:05		irc: disconnected from server
2012-06-06 08:50:37	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-06 08:50:38	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber volter WOFall zeljko]
2012-06-06 08:50:38	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-06 08:50:38	--	Notice(hitchcock.freenode.net): [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp
2012-06-06 08:50:45	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-06 09:37:50	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-06 11:36:50	-->	SynrG (~synrg@debian/developer/synrg) has joined #watir
2012-06-06 14:01:31	Cope	jarib: right, so my use case atm is not JS. But soem of the watir stuff does look cool.
2012-06-06 14:01:56	Cope	The main concern is it's hard to know, with so many options, which of the 'webdriver' type projects are live / paused / active etc
2012-06-06 15:18:11		irc: disconnected from server
2012-06-06 15:25:31	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-06 15:25:32	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 jibay_ Remco s0ber SynrG WOFall zeljko]
2012-06-06 15:25:32	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-06 15:25:36	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-06 19:28:32		irc: disconnected from server
2012-06-07 08:54:03	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-07 08:54:04	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib Remco s0ber SynrG WOFall zeljko]
2012-06-07 08:54:04	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-06-07 08:54:13	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-07 09:42:18	-->	jarm0 (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has joined #watir
2012-06-07 10:50:25	-->	jibay (~jibay@ANancy-155-1-20-69.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-07 11:23:35	<--	Cope (~stephen@91.194.75.218) has quit (Read error: Connection reset by peer)
2012-06-07 11:24:05	-->	Cope (~stephen@91.194.75.218) has joined #watir
2012-06-07 15:01:53	-->	gheegh (~gheegh@pool-173-73-41-11.washdc.fios.verizon.net) has joined #watir
2012-06-07 16:09:53	-->	s0ber_ (~s0ber@114-36-237-89.dynamic.hinet.net) has joined #watir
2012-06-07 16:11:50	<--	s0ber (~s0ber@114-36-236-70.dynamic.hinet.net) has quit (Ping timeout: 252 seconds)
2012-06-07 16:12:05	--	s0ber_ is now known as s0ber
2012-06-07 16:55:34	<--	djinni (~djinni@li125-242.members.linode.com) has quit (Ping timeout: 244 seconds)
2012-06-07 16:56:35	-->	djinni (~djinni@li125-242.members.linode.com) has joined #watir
2012-06-07 18:06:06	<--	Remco (~remco@unaffiliated/remco) has quit (Ping timeout: 252 seconds)
2012-06-07 18:08:57	<--	jibay (~jibay@ANancy-155-1-20-69.w90-13.abo.wanadoo.fr) has quit (Remote host closed the connection)
2012-06-07 18:45:27		irc: disconnected from server
2012-06-08 09:26:15	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-08 09:26:16	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu gheegh jarib jarm0 jibay Remco s0ber SynrG volter WOFall zeljko]
2012-06-08 09:26:16	--	Channel #watir: 15 nicks (0 ops, 0 halfops, 0 voices, 15 normals)
2012-06-08 09:26:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-08 09:51:21	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-08 09:52:36	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-06-08 11:27:57	<--	gheegh (~gheegh@pool-173-73-41-11.washdc.fios.verizon.net) has quit (Ping timeout: 244 seconds)
2012-06-08 11:44:41	zeljko	jarm0: are you here?
2012-06-08 12:06:45	-->	gheegh (~gheegh@pool-173-73-41-11.washdc.fios.verizon.net) has joined #watir
2012-06-08 15:30:44	zeljko	anybody has experience with upgrading from autoit to rautomation?
2012-06-08 15:49:44		irc: disconnected from server
2012-06-08 16:11:01	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-08 16:11:01	--	Nicks #watir: [benbeltran Cope djinni fellu gheegh jarib jarm0 jibay Remco s0ber SynrG WOFall zeljko]
2012-06-08 16:11:01	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-08 16:11:06	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-08 17:36:32	-->	jarib_ (~jarib@109.74.192.179) has joined #watir
2012-06-08 17:36:42	<--	jarib (~jarib@unaffiliated/jarib) has quit (*.net *.split)
2012-06-09 10:32:38		irc: disconnected from server
2012-06-11 08:53:30	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-11 08:53:30	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber SynrG volter WOFall]
2012-06-11 08:53:30	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-11 08:53:36	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-11 09:22:09	-->	llaskin (~Leo@unaffiliated/topchef) has joined #watir
2012-06-11 09:36:38	llaskin	anyone here using TestUnit?
2012-06-11 10:01:30	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-11 10:35:50	<--	llaskin (~Leo@unaffiliated/topchef) has left #watir
2012-06-11 11:20:56	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-06-11 12:52:34	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-11 17:21:45	-->	WOFall_ (wofall@unaffiliated/wofall) has joined #watir
2012-06-11 17:29:38	<--	WOFall (wofall@unaffiliated/wofall) has quit (Ping timeout: 248 seconds)
2012-06-11 17:30:07	--	WOFall_ is now known as WOFall
2012-06-11 18:24:57		irc: disconnected from server
2012-06-12 09:18:46	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-12 09:18:46	--	Nicks #watir: [benbeltran Cope djinni fellu gheegh jarib jarm0 Remco s0ber SynrG volter WOFall]
2012-06-12 09:18:46	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-12 09:18:50	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-12 10:10:03	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Ping timeout: 245 seconds)
2012-06-12 10:21:32	-->	fabrice31 (591e7fb2@gateway/web/freenode/ip.89.30.127.178) has joined #watir
2012-06-12 10:21:45	fabrice31	hi here
2012-06-12 10:22:05	fabrice31	Is somebody already use watir (or watij) to test flash animation ? (with interactions)
2012-06-12 10:43:47	<--	fabrice31 (591e7fb2@gateway/web/freenode/ip.89.30.127.178) has quit (Ping timeout: 245 seconds)
2012-06-12 13:03:03		irc: disconnected from server
2012-06-12 13:04:15		irc: disconnected from server
2012-06-12 13:05:27	-->	benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-12 13:05:27	--	Nicks #watir: [benbeltran1 benbeltran2 Cope djinni fellu gheegh jarib jarm0 Remco s0ber SynrG WOFall]
2012-06-12 13:05:27	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-12 13:05:32	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-12 13:07:39	<--	benbeltran1 (~benbeltra@187-163-28-116.static.axtel.net) has quit (Ping timeout: 246 seconds)
2012-06-12 13:13:31	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-12 19:11:35		irc: disconnected from server
2012-06-12 19:22:20	-->	benbeltran2 (~benbeltra@189.196.63.221) has joined #watir
2012-06-12 19:22:20	--	Nicks #watir: [benbeltran2 Cope djinni fellu gheegh jarib jarm0 Remco s0ber SynrG voodoofish430 WOFall]
2012-06-12 19:22:20	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-12 19:22:20	--	Notice(pratchett.freenode.net): [freenode-info] channel trolls and no channel staff around to help? please check with freenode support: http://freenode.net/faq.shtml#gettinghelp
2012-06-12 19:22:26	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-13 08:40:07		irc: disconnected from server
2012-06-13 08:40:26	-->	benbeltran2 (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-13 08:40:27	--	Nicks #watir: [benbeltran2 Cope djinni fabrice31 fellu gheegh jarib jarm0 Remco s0ber SynrG volter WOFall zeljko]
2012-06-13 08:40:27	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-06-13 08:40:33	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-13 09:20:55	--	You are now known as benbeltran
2012-06-13 09:39:05	-->	enroxorz (~enroxorz@unaffiliated/enroxorz) has joined #watir
2012-06-13 10:30:07	-->	jibay (~jibay@ANancy-155-1-31-8.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-13 10:32:05	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-13 13:08:20	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-13 14:40:49	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has quit (Quit: Leaving.)
2012-06-13 14:56:07	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-13 15:15:50	<--	enroxorz (~enroxorz@unaffiliated/enroxorz) has quit (Quit: Leaving)
2012-06-13 15:26:43	-->	p1 (~JHVH-1@173.255.202.251) has joined #watir
2012-06-13 15:28:01	p1	when i go to a page and call browser.html i don't receive any of the page's HTML that was generated by JS. is there a way to view the html exactly as it would show up in firebug?
2012-06-13 16:21:01	-->	s0ber_ (~s0ber@114-36-233-186.dynamic.hinet.net) has joined #watir
2012-06-13 16:21:39	<--	jibay (~jibay@ANancy-155-1-31-8.w90-13.abo.wanadoo.fr) has quit (Remote host closed the connection)
2012-06-13 16:22:59	<--	s0ber (~s0ber@114-36-231-164.dynamic.hinet.net) has quit (Ping timeout: 246 seconds)
2012-06-13 16:23:11	--	s0ber_ is now known as s0ber
2012-06-13 20:19:03		irc: disconnected from server
2012-06-14 09:07:37	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-14 09:07:37	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber SynrG volter WOFall]
2012-06-14 09:07:37	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-14 09:07:43	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-14 09:20:07	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-14 09:25:24	-->	zeljko (u4950@gateway/web/irccloud.com/x-pcybzoiaqfgjwasb) has joined #watir
2012-06-14 10:50:56	<--	jibay (~jibay@ANancy-155-1-24-61.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-06-14 11:02:01	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-14 12:22:07	-->	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has joined #watir
2012-06-14 12:22:20	buzzseven09	hello!
2012-06-14 12:22:27	buzzseven09	any watir superheroes here?
2012-06-14 13:12:53	zeljko	just one! :)
2012-06-14 13:21:07	buzzseven09	any ideas how to get safari setup with web driver on windows 7?
2012-06-14 13:21:16	buzzseven09	im kinda stuck
2012-06-14 13:21:52	buzzseven09	using watir-webdriver 1.8.24
2012-06-14 13:22:22	buzzseven09	and selenium-webdriver 1.8.24
2012-06-14 13:22:46	buzzseven09	oh wait thats wrong
2012-06-14 13:23:19	buzzseven09	watir-webdriver 0.6.1
2012-06-14 13:23:48	buzzseven09	selenium-webdriver 2.22.2
2012-06-14 13:25:47	buzzseven09	?
2012-06-14 13:43:55	zeljko	did you read the docs?
2012-06-14 13:44:16	zeljko	http://watirwebdriver.com/safari/
2012-06-14 13:46:32	buzzseven09	i don't need to go this route on mac
2012-06-14 13:46:47	buzzseven09	just selenium web driver works well for mac
2012-06-14 13:47:10	zeljko	I am not sure watir-webdriver can drive safari on windows
2012-06-14 13:47:16	zeljko	(now that I have read your questions)
2012-06-14 13:47:20	zeljko	*question
2012-06-14 13:47:50	buzzseven09	I see. Problem solved then!
2012-06-14 13:47:53	buzzseven09	thank you!
2012-06-14 13:49:59	buzzseven09	i'll just ignore testing on safari till they have support for windows I guess
2012-06-14 14:04:12	<--	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has quit (Ping timeout: 244 seconds)
2012-06-14 14:05:13	-->	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has joined #watir
2012-06-14 14:51:22	<--	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has quit (Ping timeout: 246 seconds)
2012-06-14 14:51:27	-->	buzzseven09_ (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has joined #watir
2012-06-14 17:32:06	-->	quichelorraineb (43a8d2f9@gateway/web/freenode/ip.67.168.210.249) has joined #watir
2012-06-14 17:33:57	<--	quichelorraineb (43a8d2f9@gateway/web/freenode/ip.67.168.210.249) has quit (Client Quit)
2012-06-14 17:34:28	buzzseven09_	another issue with safari!
2012-06-14 17:34:32	buzzseven09_	anybody home?
2012-06-14 17:47:38	<--	buzzseven09_ (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has quit (Ping timeout: 240 seconds)
2012-06-14 17:50:56	-->	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has joined #watir
2012-06-14 21:08:55		irc: disconnected from server
2012-06-15 09:24:00	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-15 09:24:00	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber SynrG volter WOFall zeljko]
2012-06-15 09:24:00	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-06-15 09:24:04	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-15 10:19:55	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-15 10:56:38	<--	fabrice31 (~fabrice31@89.30.127.162) has quit (Remote host closed the connection)
2012-06-15 11:07:37	-->	imperator (~djberge@184-96-125-93.hlrn.qwest.net) has joined #watir
2012-06-15 11:07:42	imperator	hello
2012-06-15 11:09:32	imperator	https://gist.github.com/2937310
2012-06-15 11:13:37	imperator	actually, simplfied it even more
2012-06-15 11:13:53	imperator	get that just calling .goto
2012-06-15 12:36:57	-->	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has joined #watir
2012-06-15 13:06:14	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-15 13:23:27	<--	imperator (~djberge@184-96-125-93.hlrn.qwest.net) has quit (Ping timeout: 244 seconds)
2012-06-15 13:38:41	-->	imperator (~Daniel@184-96-125-93.hlrn.qwest.net) has joined #watir
2012-06-15 14:42:49	-->	buzzseven09_ (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has joined #watir
2012-06-15 14:43:02	<--	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has quit (Ping timeout: 246 seconds)
2012-06-15 14:43:02	--	buzzseven09_ is now known as buzzseven09
2012-06-15 14:50:38	<--	buzzseven09 (~buzz0978@c-67-188-64-211.hsd1.ca.comcast.net) has quit (Ping timeout: 240 seconds)
2012-06-15 14:55:30	-->	buzzseven09 (~buzz0978@c-98-248-232-105.hsd1.ca.comcast.net) has joined #watir
2012-06-16 18:21:09		irc: disconnected from server
2012-06-16 19:03:55	-->	benbeltran (~benbeltra@200.76.82.250) has joined #watir
2012-06-16 19:03:55	--	Nicks #watir: [benbeltran Cope djinni fellu jarib jarm0 jibay Remco s0ber SynrG WOFall zeljko]
2012-06-16 19:03:55	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-16 19:04:00	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-16 20:21:05		irc: disconnected from server
2012-06-17 14:22:53	-->	benbeltran (~benbeltra@200.76.90.255) has joined #watir
2012-06-17 14:22:54	--	Nicks #watir: [benbeltran Cope djinni fellu jarib jarm0 jibay Remco s0ber SynrG WOFall zeljko]
2012-06-17 14:22:54	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-17 14:23:01	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-17 14:29:59		irc: disconnected from server
2012-06-17 14:30:24	-->	benbeltran (~benbeltra@200.76.82.129) has joined #watir
2012-06-17 14:30:24	--	Nicks #watir: [benbeltran Cope djinni fellu jarib jarm0 jibay Remco s0ber SynrG WOFall zeljko]
2012-06-17 14:30:24	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-17 14:30:29	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-17 18:39:17		irc: disconnected from server
2012-06-17 18:39:40	-->	benbeltran (~benbeltra@200.76.82.129) has joined #watir
2012-06-17 18:39:40	--	Nicks #watir: [benbeltran Cope_ djinni fellu jarib jarm0 jibay_ Remco s0ber SynrG WOFall zeljko]
2012-06-17 18:39:40	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-17 18:39:47	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-17 18:58:34		irc: disconnected from server
2012-06-18 09:17:18	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-18 09:17:18	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 jibay Remco s0ber SynrG volter WOFall zeljko]
2012-06-18 09:17:18	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-06-18 09:17:22	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-18 11:02:35	<--	SynrG (~synrg@debian/developer/synrg) has left #watir ("wop")
2012-06-18 11:54:10	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-18 12:38:23	<--	jibay (~jibay@ANancy-155-1-27-4.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 246 seconds)
2012-06-18 12:51:45	-->	jibay (~jibay@ANancy-155-1-48-122.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-18 13:25:01	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-18 16:45:14	-->	jibay_ (~jibay@ANancy-155-1-45-5.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-18 16:47:01	<--	jibay (~jibay@ANancy-155-1-48-122.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 252 seconds)
2012-06-18 17:28:15		irc: disconnected from server
2012-06-19 09:07:29	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-19 09:07:29	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0 Remco s0ber volter WOFall zeljko]
2012-06-19 09:07:29	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-19 09:07:38	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-19 09:18:27	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-06-19 10:32:25	-->	jarm0p (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has joined #watir
2012-06-19 10:33:46	<--	jarm0 (~Jarmo@84-50-126-243-dsl.kjj.estpak.ee) has quit (Ping timeout: 244 seconds)
2012-06-19 11:22:00	-->	jibay (~jibay@ANancy-155-1-45-5.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-19 11:44:01	-->	jibay_ (~jibay@ANancy-155-1-23-228.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-19 11:46:40	<--	jibay (~jibay@ANancy-155-1-45-5.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 260 seconds)
2012-06-19 11:50:31	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-19 12:33:53	-->	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has joined #watir
2012-06-19 15:02:17	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-06-19 15:02:57	-->	cheezy (~cheezy@69.54.48.158) has joined #watir
2012-06-19 15:46:16	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-06-19 15:51:56	<--	jibay_ (~jibay@ANancy-155-1-23-228.w90-13.abo.wanadoo.fr) has quit (Read error: Operation timed out)
2012-06-19 16:07:17	-->	jibay_ (~jibay@ANancy-155-1-3-139.w90-6.abo.wanadoo.fr) has joined #watir
2012-06-19 16:19:38	<--	s0ber (~s0ber@114-36-250-181.dynamic.hinet.net) has quit (Read error: Connection reset by peer)
2012-06-19 16:21:08	-->	s0ber (~s0ber@114-36-248-184.dynamic.hinet.net) has joined #watir
2012-06-19 16:55:11	-->	rcrossan (~chatzilla@70.102.219.22) has joined #watir
2012-06-19 16:57:13	rcrossan	was just looking through the topics on the watir google group, but didn't see the starting info I need. Looking where I can find some online documentation to explain how I can use Jenkins to run watir scripts? We have Jenkins already set up and being used in our environment for other testing. We have another group who use watir for their testing, do they need to re-write their scripts in...
2012-06-19 16:57:15	rcrossan	...Xunit? or can Jenkins read watir as it is natively written?
2012-06-19 17:56:13	-->	travis-ci (~travis-ci@ec2-50-16-21-15.compute-1.amazonaws.com) has joined #watir
2012-06-19 17:56:13	travis-ci	[travis-ci] watir/watir-webdriver#103 (master - 96e8a61 : Jari Bakken): The build passed.
2012-06-19 17:56:13	travis-ci	[travis-ci] Change view : https://github.com/watir/watir-webdriver/compare/a1043dd8c8af...96e8a61bc357
2012-06-19 17:56:13	travis-ci	[travis-ci] Build details : http://travis-ci.org/watir/watir-webdriver/builds/1660318
2012-06-19 17:56:13	<--	travis-ci (~travis-ci@ec2-50-16-21-15.compute-1.amazonaws.com) has left #watir
2012-06-19 17:56:39	<--	voodoofish430 (~mtorres@NAT10.pas.idealab.com) has left #watir
2012-06-19 17:58:59	<--	rcrossan (~chatzilla@70.102.219.22) has quit (Quit: ChatZilla 0.9.88.2 [Firefox 12.0/20120420145725])
2012-06-19 21:50:29		irc: disconnected from server
2012-06-19 21:50:52	-->	benbeltran (~benbeltra@200.76.82.169) has joined #watir
2012-06-19 21:50:53	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0p Remco s0ber soimo WOFall zeljko]
2012-06-19 21:50:53	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-19 21:51:02	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-19 22:04:15	<--	soimo (62e81003@gateway/web/freenode/ip.98.232.16.3) has quit (Quit: Page closed)
2012-06-20 07:43:28		irc: disconnected from server
2012-06-20 09:02:29	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-20 09:02:29	--	Nicks #watir: [benbeltran cheezy Cope djinni fabrice31 fellu jarib jarm0p jibay Remco s0ber volter WOFall zeljko]
2012-06-20 09:02:29	--	Channel #watir: 14 nicks (0 ops, 0 halfops, 0 voices, 14 normals)
2012-06-20 09:02:35	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-20 09:03:37	<--	jarib (~jarib@unaffiliated/jarib) has quit (Ping timeout: 260 seconds)
2012-06-20 09:06:00	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-06-20 11:27:45	<--	volter (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-20 15:42:55	<--	cheezy (~cheezy@69.54.48.158) has quit (Remote host closed the connection)
2012-06-20 18:33:38	<--	jibay (~jibay@ANancy-155-1-56-108.w90-13.abo.wanadoo.fr) has quit (Ping timeout: 240 seconds)
2012-06-20 18:46:24	-->	jibay (~jibay@ANancy-155-1-10-207.w90-6.abo.wanadoo.fr) has joined #watir
2012-06-20 20:05:10		irc: disconnected from server
2012-06-20 20:05:37	-->	benbeltran (~benbeltra@200.77.5.199) has joined #watir
2012-06-20 20:05:37	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0p Remco s0ber WOFall zeljko]
2012-06-20 20:05:37	--	Channel #watir: 11 nicks (0 ops, 0 halfops, 0 voices, 11 normals)
2012-06-20 20:05:42	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-20 22:29:48		irc: disconnected from server
2012-06-21 08:37:06	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-21 08:37:06	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0p Remco s0ber volter_ WOFall zeljko]
2012-06-21 08:37:06	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-21 08:37:11	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-21 09:22:39	-->	jibay (~jibay@ANancy-155-1-17-185.w90-13.abo.wanadoo.fr) has joined #watir
2012-06-21 09:36:09	<--	volter_ (~volker@2001:67c:27c:52:20f:feff:fe92:8ab7) has quit (Quit: Konversation terminated!)
2012-06-21 09:53:00	<--	jarib (~jarib@unaffiliated/jarib) has quit (Excess Flood)
2012-06-21 09:53:11	-->	jarib (~jarib@unaffiliated/jarib) has joined #watir
2012-06-21 13:07:21		irc: disconnected from server
2012-06-21 13:07:41	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-21 13:07:41	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0p jibay Remco s0ber WOFall zeljko]
2012-06-21 13:07:41	--	Channel #watir: 12 nicks (0 ops, 0 halfops, 0 voices, 12 normals)
2012-06-21 13:07:45	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-22 09:24:54	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-22 09:24:54	--	Nicks #watir: [benbeltran Cope djinni fabrice31 fellu jarib jarm0p jibay Remco s0ber volter WOFall zeljko]
2012-06-22 09:24:54	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-22 09:24:54	--	Mode #watir [+cnt]
2012-06-22 09:24:54	--	Channel created on Mon, 26 Jan 2009 23:31:03
2012-06-22 10:37:26		irc: disconnected from server
2012-06-22 11:18:49	-->	benbeltran (~benbeltra@187-163-28-116.static.axtel.net) has joined #watir
2012-06-22 11:18:49	--	Nicks #watir: [benbeltran Cope djinni fellu FuegoDog jarib jarm0p jibay Remco s0ber volter WOFall zeljko]
2012-06-22 11:18:49	--	Channel #watir: 13 nicks (0 ops, 0 halfops, 0 voices, 13 normals)
2012-06-22 11:18:49	--	Mode #watir [+cnt]
2012-06-22 11:18:50	--	Channel created on Mon, 26 Jan 2009 23:31:03