Skip to content

Commit 4b36772

Browse files
committed
Merge remote-tracking branch 'rtomac/select-window'
2 parents e323420 + 513c635 commit 4b36772

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ Release Notes
33

44
1.1 (unreleased)
55
----------------
6+
- Fixed issue with select window under IE. Also addresses issue with Firefox
7+
when using selenum 2.25.0
8+
(see http://code.google.com/p/selenium/issues/detail?id=4375).
9+
[adwu73]
10+
611
- Added iframe support by removing strict filtering for only <frame> elements.
712
[emanlove]
813

src/Selenium2Library/webdrivermonkeypatches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_current_window_handle(self):
2121
return self.current_window_handle
2222

2323
def get_current_window_info(self):
24-
atts = self.execute_script("return [ window.id, window.name, document.title, document.location ];")
24+
atts = self.execute_script("return [ window.id, window.name, document.title, document.url ];")
2525
atts = [ att if att is not None and len(att) else 'undefined'
2626
for att in atts ]
2727
return (self.current_window_handle, atts[0], atts[1], atts[2], atts[3])

0 commit comments

Comments
 (0)