forked from cheezy/page-object
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
928 lines (840 loc) · 31 KB
/
ChangeLog
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
Version 2.3.1 / 2021/03/19
* Fixes
* Removed dependency on Selenium-WebDriver v3
Version 2.3.0 / 2021/03/03
* Enhancements
* Added a date_field accessor
* Fixes
* Fixed PageObject#present? when using with ActiveSupport (Thanks Stephen Turley)
* Fixed exception when method does not exist
* Fixed locating iframes by :visible (Thanks Joseph A. Ours)
Version 2.2.6 / 2019/03/18
* Fixes
* Fixed deprecation warning in populate_page_with (#467)
* Fixed passing PageObject::Elements::Element to drag_and_drop_on (#422)
Version 2.2.5 / 2018/11/21
* Enhancements
* populate_page_with will work with anything that can be converted to a Hash (Thanks Titus Fortner)
* Fixes
* Fixed present? when using with ActiveSupport (Thanks Justin Ko)
* Fixed issues with when_visible and when_not_visible (Thanks Justin Ko)
Version 2.2.4 / 2017-9-23
* Enhancements
* Added the ability to get the values of a table column (Thanks sanvijay)
* Added the ability to populate sections with a nested entry from data_magic
Version 2.2.3 / 2017-8-30
* Enhancements
* Added the preceding_sibling method to Element
* Added the following_sibling method to Element
* Added the siblings method to Element
* Added the children method to Element
* Added the preceding_siblings method to Element
* Added the following_siblings method to Element
* Fixes
* Fixed issue that occurred when things were moved around in Watir 6.8
Version 2.2.2 / 2017-8-25
* Fixes
* Fixed issue when using text for table index with special characters (Thanks Jason Phebus)
Version 2.2.1 / 2017-8-22
* Enhancements
* Moved some functionality from PageObject to Watir (Thanks Titus Fortner)
* Fixes
* Fixed bug when selection option by text with populate_page_with (Thanks Jason Phebus)
* Fixed issue with wrapping the Selenium driver with Watir (Thanks Titus Fortner)
Version 2.2 / 2017-7-4
* Enhancements
* when_visible and when_not_visible now wait for element to be present before checking
* populate_page_with can populate select_list using values (Thanks vveliev)
* Removed all custom locator mappings
* Removed platform loading
* Fixes
* Moved net-http-persistent to a development dependency
* Fixed issue with frames, sections, and indexed properties
* Fixed issue impacting rspec be_visible/be_present DSL
* Fixed issue with getting content of empty multi-select
Version 2.1.1 / 2017-3-7
* Fixes
* Fixed issue with import ordering
Version 2.1 / 2017-3-6
This is the first of three quick releases that will undo a lot of
legacy code and end with a far more flexible gem.
* Enhancements
* Removed Selenium Platform.
Still support Selenium driver by wrapping it with a Watir browser.
* Added ability to locate indexed element by regex (Thanks Sean MacGahan)
* Removed all direct delegates. Now relies on method_missing to call Watir methods.
- You may have to change RSpec matchers to use method instead of predicate.
Version 2.0.0 / 2016-11-22
* Enhancements
* Added focused? method on element. (Thanks Joe Schulte)
* Updated to use Watir 6 instead of Watir-Webdriver (Thanks Robert MacCracken)
This change requires updates to your project. You will need to update your
Gemfile to use 'watir' instead of 'watir-webdriver' and you will need to
update any require statement you might have. Also, Watir 6 is more strick
with text_field and text_area. You will have to use the proper one or it
will not locate the element.
Version 1.2.2 / 2016-11-17
* Fixes
* Fixed a bug that was introduced in the latest release
Version 1.2.1 / 2016-11-11
* Enhancements
* Added numerous missing element types
* Support for Selenium 3 (Thanks Titus Fortner)
* Added new generated method for Image - (name)_loaded? (Thanks joesho112358)
* Added CSS support for Watir (Thanks Titus Fortner)
* Added two new methods that check without throwing exception
- check_visible
- check_exists
Version 1.2.0 / 2016-6-15
* Enhancements
* Added array methods to section collections (Thanks Cohen Carlisle)
* Ensuring that method_missing is always forwarded to the root element (Thanks Cohen Carlisle)
* Added ability to call style method with no parameters (Thanks Justin Watts)
- with Watir will return all styles; with Selenium will return empty string
* Cleaned up frame and iframe nesting (Thanks Jon Snow)
* Support for adding other platforms (Thanks pvmeerbe)
=== Version 1.1.1 / 2016-1-7
* Enhancements
* Added row accessor method and support for finding row elements directly (Thanks Ethan Hedrick)
* Added list_items method to UnorderedList to get an array of children.
* Speed optimizations for UnorderedList
* Added list_items method to OrderedList to get an array of children.
* Speed optimizations for OrderedList
* Added ability to check if a section is visible?, present?, or exists? (Thanks Donavan Stanley)
* Added support for the Italic (i) element (Thanks Sergey Morozov)
* Added size and location methods to all elements (Thanks Steve Jackson)
* Added width, height, and centre methods for elements (Thanks David Selby)
* Added missing right_click method for watir (Thanks David Selby)
=== Version 1.1.0 / 2015-5-2
* Enhancements
* Performance enhancements when initializing elements (Thanks Alexis Andersen)
* Enabled button elements to return text when using selenium-webdriver.
* Added support for :index identifier in indexed properties.
* Added page_section and page_sections accessor methods which can specify a page object of elements on another page object.
* Fixes
* Fixed issue causing exceptions when comparing equality of element to non-element objects.
* Fixed issue that causes indexed properties to return the same value for any index.
=== Version 1.0.3 / 2014-12-9
* Enhancements
* Added support for the bold tag (Thanks sedx)
* Added support for angularjs in wait_for_ajax (Thanks Owen Housden)
* Added hashes method to Table to return table contents as a Hash (Thanks Tobi)
* Fixed wait_for_expected_title so it detects if the title changes (Thanks Levi Wilson)
* Fixes
* Fixed issue that allows access to elements on other indexed properties (Thanks Alexis Andersen)
* Removed the method to clear radio buttons. It didn't work on selenium and threw an exception on watir. (Thanks Justin Ko)
=== Version 1.0.2 / 2014-7-21
* Enhancements
* Added support to use multiple identifiers when locating nested frames / iframes (Thanks Justin Ko)
* Fixes
* Reverted the method name check due to unintended consequences
=== Version 1.0.1 / 2014-7-19
* Enhancements
* Checks the name of generated methods to ensure they do not colide with existing page-object methods
* Removed old legacy css code and now delegate everything to Watir
* Fixes
* Added support for dynamically finding elements inside iframes (Thanks Justin Ko)
=== Version 1.0 / 2014-6-1
* Enhancements
* Better support for using Regexp
* Added new page_url_value method that is created when you define page_url to return the value
* Added better error message when nil is passed to the constructor of a PageObject
* Updated to use the latest watir-webdriver 0.6.9
* Updated to use the latest selenium-webdriver 2.42.0
* Fixes
* Improved handling of index locator
=== Version 0.9.8 / 2014-3-16
* Enhancements
* populate_page_with not supports radio groups
=== Version 0.9.7 / 2014-2-26
* Enhancements
* Table now supports exists?
* super called when factory method invoked with non PageObject class
* Updated to use the latest watir-webdriver 0.6.8
* Updated to use the latest selenium-webdriver 2.40.0
=== Version 0.9.6 / 2014-2-4
* Enhancements
* Updated to use the latest watir-webdriver 0.6.7
* Fixes
* Added in_iframe methods to match the updates to the watir-webdriver gem.
=== Version 0.9.5 / 2014-1-22
* Enhancements
* Updated to use the latest selenium-webdriver 2.39.0
* Added href method to Link
* Added generation of plural version of basic types on class
* Added new accessors for radio button group (Thanks Travis Fillmore)
=== Version 0.9.4 / 2013-11-29
* Enhancements
* Added ability for execute_scripts to accept arguments (Thanks Justin Ko)
* Added ability to identify frame using a regular expression when using Watir
=== Version 0.9.3 / 2013-10-24
* Enhancements
* Added class_name method to Element
* Added select_text method to Element
* Added wait_for_expected_title and expected_element_visible methods (Thanks smartkiwi)
* Updated to use the latest selenium-webdriver 2.37.0
* Fixes
* Fixed issue with custom widgets on Ruby 1.8.7 (Thanks X Zhang)
=== Version 0.9.2 / 2013-8-23
* Enhancements
* Added elements method to accessor so one can gen methods for generic collections of elements
* Updated to use the latest selenium-webdriver 2.35.0
=== Version 0.9.1 / 2013-7-16
* Enhancements
* Added css locator support for Image (Thanks Elben Shira)
* Fixes
* Corrected isse with generated method in widgets module
=== Version 0.9.0 / 2013-6-11
* Enhancements
* Added plural _elements methods for the following types:
* area
* canvas
* audio
* video
* svg
* Added basic element support for the following types:
* as
* blockquote
* body
* br
* caption
* col
* colgroup
* command
* data
* datalist
* del
* details
* dialog
* dl
* embed
* fieldset
* head
* hr
* ins
* keygen
* legend
* map
* menu
* meta
* meter
* object
* optgroup
* output
* param
* pre
* progress
* small
* strong
* style
* time
* title
* track
* Updated to use the latest selenium-webdriver 2.33.0
* Fixes
* Fixed issue when using the page and element accessors for html 5 elements.
=== Version 0.8.10 / 2013-5-3
* Enhancements
* Updated populate_page_with to also check if the element is visible prior to setting value
* Updated to use the latest watir-webdriver 0.6.4
=== Version 0.8.9 / 2013-4-13
* Enhancements
* Updated to use the latest watir-webdriver 0.6.3
* Updated to use the latest selenium-webdriver 2.32.1
* Fixes
* Fixed an issue when you try to find an element using no identifier (Thanks Alex Rodionov)
=== Version 0.8.8 / 2013-4-5
* Enhancements
* Added callback to widget classes to allow them to define their own accessors
* Added more support for using css when locating elements using Watir-webdriver (Neal Lindsay)
=== Version 0.8.7 / 2013-3-31
* Enhancements
* Added ability to find elements using any valid attribute
=== Version 0.8.6.1 / 2013-3-4
* Enhancements
* Added lable locators for checkbox, text area, select list, radio button and file field (Thanks Alex Rodionov)
* Updated to use the latest selenium-webdriver 2.31.0
* Updated to use the latest page_navigation 0.7
=== Version 0.8.6 / 2013-2-27
* Enhancements
* Added support for the svg element
* Fixes
* Fixed issue with nested generic element calls
=== Version 0.8.5 / 2013-2-21
* Enhancements
* Updated to use the latest selenium-webdriver 2.30 - support for Firefox 19
=== Version 0.8.4 / 2013-1-26
* Enhancements
* Extracted navigational methods into new gem named page_navigation
=== Version 0.8.3 / 2013-1-22
* Enhancements
* Updated to use the latest selenium-webdriver 2.29
* Added :using_params parameter to both on_page and if_page methods
* Fixes
* Fixed issue where has_expected_title? displays misleading error message (X Zhang)
* Fixed issue when getting basic Element element when using Selenium
* Fixed issue when using plural class methods multiple times on same object
=== Version 0.8.2 / 2013-1-13
* Enhancements
* Updated expected_element to ue the global default element wait by default
* Updated routes to accept more than two entries in the array which are passed as arguments
* Added new generated method for select_list to return options -> <name>_options (X Zhang)
* Added scroll_into_view method to Element
* Added *_element and *_elements methods to PageObject and Element for the following types
* addr
* address
* article
* aside
* bdi
* bdo
* cite
* code
* dd
* dfn
* dt
* em
* figcaption
* figure
* footer
* header
* hgroup
* kbd
* mark
* nav
* noscript
* rp
* rt
* ruby
* samp
* section
* sub
* summary
* sup
* var
* wbr
=== Version 0.8.1 / 2012-12-28
* Fixes
* Fixed issue when calling new multi-element class methods using a block
=== Version 0.8 / 2012-12-22
* Enhancements
* Added the following class level methods to return all elements matching the locator
* divs
* buttons
* text_fields
* hidden_fields
* text_areas
* select_lists
* links
* checkboxes
* radio_buttons
* spans
* tables
* cells
* images
* forms
* list_items
* unordered_lists
* ordered_lists
* h1s
* h2s
* h3s
* h4s
* h5s
* h6s
* paragraphs
* labels
* file_fields
* Added ability to register and use custom elements based on standard elements (William Powell)
* Added generated method to return text for a table
* Added generated method to return text for an unordered list
* Added generated method to return text for an ordered list
* Added html method to Element
* Updated to use the latest selenium-webdriver 2.27.2
* Updated to use the latest watir-webdriver 0.6.2
=== Version 0.7.6 / 2012-11-28
* Fixes
* Fixed attach_to_window workes with partial url on Selenium (George Shakhnazaryan)
* Fixed double click works on Selenium (William Powell)
* Enhancements
* Added css selector support for all elements when using Selenium (Brendan Mulholland)
* Added callback to initialize_accessors method during initialization (Theodore Robert Campbell Jr)
=== Version 0.7.5.1 / 2012-10-16
* Fixes
* Fixed issue when passing symbol to page_url and calling multiple times
=== Version 0.7.5 / 2012-10-14
* Enhancements
* Enhanced TabeleCell to return nil when there is no corresponding cell for a referenced column
* Added css selector support for SelectList and Div
* Added ability to pass clasname as string to visit_page, on_page, and if_page methods
* Added params class instance variable to hold hash values that can be used in the page
* Added ability to insert ERB into page_url string and have it access params
=== Version 0.7.4 / 2012-9-8
* Enhancements
* Added ability to find text_fields with :css when using Selenium
* Added selected_values method to SelectList to get values of all selected elements
* Fixes
* Fixed problem getting value from SelectList when it is in a Frame with Selenium
=== Version 0.7.3 / 2012-8-18
* Enhancements
* Improved handling of alert and confirm Javascript popups (George Shakhnazaryan)
* Added hover method to Element. Browser support is limited.
* Added method to get the id of an Element
* Added support for the following new elements
Video
=== Version 0.7.2 / 2012-8-1
* Enhancements
* Added ability to find list_item by :text
* Added support for the following new elements
Canvas
Audio
* Updated to use selenium-webdriver 2.25.0
* Updated to provide better support for table_row.find_index_by_title when tables have theads... (George Shakhnazaryan)
=== Version 0.7.1 / 2012-7-15
* Enhancements
* Added support for the following new elements
Area
* Added the following aliased methods to their corresponding Accessors method
a => link
hidden => hidden_field
img => image
li => list_item
ol => ordered_list
p => paragraph
radio => radio_button
select => select_list
td => cell
textarea => text_area
ul => unordered_list
* Added the following methods to return generic Element objects
abbr
address
article
aside
bdi
bdo
cite
code
dd
dfn
dt
em
figcaption
figure
footer
header
hgroup
kbd
mark
nav
noscript
rp
rt
ruby
samp
section
sub
summary
sup
var
wbr
=== Version 0.7.0 / 2012-6-30
* Enhancements
* Updated Table [] method to return a row that has matching partial text in any column (Thanks George Shakhnazaryan)
* Updated TableRow [] method to return column that matching partial text in any column (Thanks George Shakhnazaryan)
* Added if_page to PageFactory (Thanks Gregory Shayko)
* Added index_property for accessing sets of related fields (Thanks robkid)
* Updated to use selenium-webdriver 2.24.0
=== Version 0.6.9 / 2012-6-12
* Enhancements
* Added select_value method to SelectList
* Updated link to be able to identify by title
* Updated div to be able to identify by title
* Updated text_field to be able to identify by text and label
* Updated to use selenium-webdriver 2.22.2
* Fixes
* Fixed populate_page_with to work with text areas (Thanks ramyav85)
=== Version 0.6.8 / 2012-6-3
* Enhancements
* Updated [] method on Table to return nil when bad row header is provided
* Updated [] method on TableRow to return nil when bad column header is provided
* Updated to use watir-webdriver 0.6.1
* Updated to use selenium-webdriver 2.22.1
* Fixes
Modified text area methods so it clears before setting new text
Fixed clear method on SelectList when using Selenium to clear multi selects
=== Version 0.6.7 / 2012-5-16
* Enhancements
* Added flash method to Element to temporarily change the background color
* Added when_not_present method to Element
* Added default override for page level waits - PageObject.default_page_wait
* Added default override for element level waits - PageObject.default_element_wait
* Added the ability to find a TableRow by providing a String to the [] method from Table
* Added the ability to find a TableCell by providing a String to the [] method from TableRow
* Updated to use watir-webdriver 0.5.8
* Fixes
* Improved logic around selecting options from select lists
* TableCell now handles enabled? call gracefully
=== Version 0.6.6 / 2012-4-26
* Enhancements
* Added ability to find span's by title
* Changed order of initialization so initialize_page is called after goto
* Updated to use watir-webdriver 0.5.5
* Updated to use selenium-webdriver 2.21.2
* Fixes
* Fixed the problem with determining the existance of an Selenium element
=== Version 0.6.5 / 2012-4-12
* Enhancements
* Added a page level element method to return a generic Element object
* Added a method to retrieve all file fields on a page
* Updated all accessor methods to take a default identifier of {:index => 0}
* Updated all page level element locators to take a default identifier of {:index => 0}
* Updated all page level multi-element locators to take a default identifier of {}
* Updated deprecation warning to print to stderr (Thanks Josh Adell)
* Updated to use selenium-webdriver 2.21.0
=== Version 0.6.4 / 2012-3-27
* Enhancements
* Added support for finding the following elements by :css
Button
Link
* Added support for the label element (Thanks Paul Clewell)
* Added method to fetch generic element (Thanks Jim Holmes)
* Added direct_url alias for page_url
* Added visit alias for visit_page
* Added on alias for on_page
* Added element_with_focus method to return the element that has focus
* Changed Elements.element_class_for so parameters can be strings or symbols
* Changed page_url to accept a symbol that will cause it to call a corresponding method
* Updated to use watir-webdriver 0.5.4
=== Version 0.6.3 / 2012-3-1
* Enhancements
* Added #expected_title method to PageObject
* Added #expected_element method to PageObject
* Added #execute_script method to PageObject
* Updated to use selenium-webdriver 2.20.0
* Fixes
* Updates to the README - Thanks to p0deje and ivaravko
WARNING: This change breaks existing code
* Changed the generated getter for select_list to return the text instead of the value
=== Version 0.6.2 / 2012-2-12
* Enhancements
* Added #wait_for_ajax support for the jQuery framework
* Added #wait_for_ajax support for the Prototype framework
* Added the ability to add new Javascript Frameworks to PageObject via the #add_framework method
* Updated to use selenium-webdriver 2.19.0
* Updated to use watir-webdriver 0.5.3
* Fixes
* Fixed [] methods on OrderedList and UnorderedList so it only gets direct children
* Fixed items methods on OrderedList and UnorderedList so it returns count of direct children
=== Version 0.6.1 / 2012-1-18
* Enhancements
* Added #disabled? method to Element
* Added #selected_options method to SelectList
* Added #include? and #selected? to SelectList
* Added #append to TextField
* generates a method to determine if an element exists (Thanks Nicholas Munson)
* better message when calling platform method via method_missing (Thanks Alex Rodionov)
* Updated to use selenium-webdriver 2.17.0
=== Version 0.6 / 2012-1-10
* Enhancements
* Added ?_elements methods to ElementLocator so you can find all elements that match an identifier
* Added ?_elements methods to NestedElements so you can find all elements nested within others
* Added #navigate_to to PageFactory to navigate to a page through previous pages
* Added #continue_navigation_to to PageFactory which begins at @current_page
* Added routes to PageFactory to collect routes through the site
* Updated to use selenium-webdriver 2.16.0
=== Version 0.5.5 / 2011-12-27
* Enhancements
* Added ability to find Checkbox by :value
* Added ability to find HiddenField by :value
* Added ability to find a parent of an Element
* Added #fire_event method to Element
* Added #focus method to Element
* Fixes
* Updated #populate_page_with to no longer attempt to set a value in a field that is disabled
=== Version 0.5.4 / 2011-12-18
* Enhancements
* Added deprecation warning to the method_missing method on Element. This ability will be removed in 0.6
* Added full support for file_field element
* Added ability to find TextField by :title
* Added ability to find Form by :action
* Added ability to find Image by :alt
* Added ability to find Image by :src
=== Version 0.5.3 / 2011-12-11
* Enhancements
* Added new module PagePopulator with single method populate_page_with
* Updated to use selenium-webdriver 2.15.0
* Updated to use watir-webdriver 0.4.1
* Fixes
* Updated prompt method to make it compatible with latest dependencies
=== Version 0.5.2 / 2011-11-30
* Enhancements
* Added ability to find image buttons by src
* Added ability to find image button by alt
* Added first_row and last_row methods to Table
* Updated to use selenium-webdriver 2.14.0
* Updated to use watir-webdriver 0.3.9
=== Version 0.5.1 / 2011-11-18
* Enhancements
* Added instance level in_frame method
* Support for nesting all *_element instance methods inside in_frame call
* Support for nesting alerts inside an in_frame call
* Support for nesting confirms inside an in_frame call
* Support for nesting prompts inside an in_frame call
=== Version 0.5 / 2011-11-06
* Enhancements
* Validated support for JRuby
* Removed dependency on Mixology
* Updated to use selenium-webdriver 2.10.0
* Updated to use watir-webdriver 0.3.8
=== Version 0.4.4 / 2011-10-26
* Enhancements
* Can now find Radio buttons by value
* Updated to use selenium-webdriver 2.9.1
* Fixes
* Properly change context back to top level after interaction inside a frame with Watir
=== Version 0.4.3 / 2011-10-07
* Enhancements
* The new watir and selenium fix a fairly serious problem when working with modals and attaching to windows
* Updated to use selenium-webdriver 2.8.0
* Updated to use watir-webdriver 0.3.5
=== Version 0.4.2 / 2011-10-01
* Enhancements
* Proper handling of <button> elements
* Changed PageFactory so it also sets and instance variable @current_page to the newly created page
=== Version 0.4.1 / 2011-09-30
* Fixes
* Fixed error when loading plugins using Selenium
=== Version 0.4 / 2011-09-24
* Enhancements
* Added all of the h4 locators
* Added all of the h5 locators
* Added all of the h6 locators
* Added all of the paragraph locators
* Added the Paragraph class
* Added #click to Element
* Added #style to Element
* Added #inspect to Element
* Added #current_url to PageObject
* Added #clear_cookies to PageObject
* Added #save_screenshot to PageObject
* Updated to use selenium-webdriver 2.7.0
* Updated to use watir-webdriver 0.3.4
=== Version 0.3.2 / 2011-09-22
* Enhancements
* Element#when_present now returns the element object
* Element#when_visible now returns the element object
* Element#when_not_visible now returns the element object
* Added #clear method for TextArea
* Added support for Heading element
* Added all of the h1 locators
* Added all of the h2 locators
* Added all of the h3 locators
* Updated to use selenium-webdriver 2.6.0
=== Version 0.3.1 / 2011-09-08
* Enhancements
* Updated to use watir-webdriver 0.3.3
=== Version 0.3.0 / 2011-09-04
* Enhancements
* Changed namespace for selenium and watir to include webdriver
* Support for locating the following elements when nested
* Link
* Button
* TextField
* HiddenField
* TextArea
* SelectList
* Checkbox
* RadioButton
* Div
* Span
* Table
* TableCell
* Image
* Form
* OrderedList
* UnorderedList
* ListItem
* Added #modal_dialog to PageObject to override the default modal dialog behavior
* Changed element keys to include _webdriver
* Updated to use selenium-webdriver 2.5.0
=== Version 0.2.5 / 2011-08-19
* Enhancements
* #attach_to_window takes an optional block - will return to calling window after block executes
* Added the following instance methods to PageObject via ElementLocators
* #button_element
* #text_field_element
* #hidden_field_element
* #text_area_element
* #select_list_element
* #link_element
* #checkbox_element
* #radio_button_element
* #div_element
* #span_element
* #table_element
* #cell_element
* #image_element
* #form_element
* #list_item_element
* #unordered_list_element
* #ordered_list_element
* Updated to use selenium-webdriver 2.4.0
* Updated to use watir-webdriver 0.3.2
=== Version 0.2.4 / 2011-08-08
* Enhancements
* Can now find span by :text
* Can now find button by :value
* Added #forward and #back methods to PageObject
* Added #right_click and #double_click methods to Element
* Added #value= to TextField and TextArea
* Added #select to SelectList
* Added #check, #uncheck, and #checked? to CheckBox
* Added #select, #clear, and #selected? to RadioButton
* Can properly pass blocks to all accessor methods
* Updated to use watir-webdriver 0.3.0
=== Version 0.2.3 / 2011-08-01
* Enhancements
* Can now find a TableCell by its' text
* If we receive an error calling #attach_to_window, wait one second and try again
* Will call callback method #initialize_page method if it exists on a page object
* Renamed all *_<element_type> methods to *_element. Created alias for backward compatibility
* Delegating unknown method calls on Element to the driver element object
* Improved block handling when passed to element creation method
* Updated to use selenium-webdriver 2.3.2
=== Version 0.2.2 / 2011-07-31
* Enhancements
* Can find frame by name
* Added #clear method to Element
* Removed #switch_to_from from PageObject
* Added #in_frame to Accessors to handle frame and iframe access
* Fixes
* Clearing value from text_field before setting value on Selenium
=== Version 0.2.1 / 2011-07-29
* Enhancements
* Added ability to locate div by the contained text
* Added #attach_to_window so a page object and operate on another window
* Added #switch_to_frame to allow one to switch to a frame
* Added #send_keys to PageObject::Elements::Element
* Added #refresh to page object
* Work toward making drivers pluggable
* Updated to use selenium-webdriver 2.2.0
* Updated to use watir-webdriver 0.2.8
=== Version 0.2 / 2011-07-24
* Enhancements
* Async handling
* Added #wait_until to page object to support async events at page level
* Added the following methods to PageObject::Elements::Element
* #when_present
* #when_visible
* #when_not_visible
* #wait_until
* Handling popups
* Added #alert to page object to override default alert popup behavior
* Added #confirm to page object to override default confirm popup behavior
* Added #prompt to page object to override default prompt popup behavior
* Updated to use selenium-webdriver 2.1.0
=== Version 0.1.1 / 2011-07-16
* Enhancements
* Support for identifying hidden fields by text when using Selenium
* Support for identifying links by href when using Selenium
* Updated to use selenium-webdriver 2.0.1
* Updated to use watir-webdriver 0.2.6
=== Version 0.1 / 2011-07-01
* Enhancements
* Support for using multiple identifiers when locating the following element:
* Link
* TextField
* HiddenField
* TextArea
* SelectList
* CheckBox
* RadioButton
* Button
* Div
* Span
* Table
* TableCell
* Image
* Form
* ListItem
* UnorderedList
* OrderedList
* Selenium support for using index for the following elements:
* Link
* TextField
* HiddenField
* TextArea
* SelectList
* CheckBox
* RadioButton
* Button
* Div
* Span
* Table
* Image
* Form
* ListItem
* UnorderedList
* OrderedList
* Support name for identification across all elements in Watir
* Added [] method to SelectList to index Options
* Added options method to Select List
* Added support for the following elements
* Option
* Updated to use selenium-webdriver 0.2.2
* Updated to use watir-webdriver 0.2.5
=== Version 0.0.5 / 2011-06-15
* Enhancements
* Added rows method to Table to return number or rows
* Added columns method to TableRow to return the number of columns
* Table now supports Enumerable to iterate over the TableRows
* TableRow now supports Enumerable to iterate over TableCells
* Added items method to UnorderedList to return number of ListItems
* Added items method to OrderedList to return number of ListItems
* UnorderedList now supports Enumerable to iterate over the ListItems
* OrderedList now supports Enumerable to iterate over the ListItems
* All element methods now take an optional block that can be executed passing a browser
* Created PageFactory module to add factory methods to your step definitions
* Thanks Alister Scott for the idea
=== Version 0.0.4 / 2011-06-13
* Enhancements
* Added support for the following elements
* hidden field
* form
* list item
* unordered list
* ordered list
=== Version 0.0.3 / 2011-06-02
* Enhancements
* Added support for the following elements
* span
* image
* Added the following methods to Element
* value
* ==
* tag_name
* attribute
* click
* Updated to use selenium-webdriver 0.2.1
* Updated to use watir-webdriver 0.2.4
=== Version 0.0.2 / 2011-05-30
* Enhancements
* Added support for the following elements
* div
* button
* table
* table row
* table cell
* Added text method to element
=== Version 0.0.1 / 2011-05-22
* Enhancements
* Support for the following elements
* check box
* link
* radio button
* select list
* text field
* Support for the following page level functions
* text
* html
* title