[Checkins] SVN: gocept.selenium/trunk/ API expansion: added ``getAllWindow*`` and ``selectWindow``.

Michael Howitz mh at gocept.com
Tue Nov 29 16:35:35 UTC 2011


Log message for revision 123528:
  API expansion: added ``getAllWindow*`` and ``selectWindow``.
  

Changed:
  U   gocept.selenium/trunk/CHANGES.txt
  U   gocept.selenium/trunk/src/gocept/selenium/selenese.py

-=-
Modified: gocept.selenium/trunk/CHANGES.txt
===================================================================
--- gocept.selenium/trunk/CHANGES.txt	2011-11-29 16:29:59 UTC (rev 123527)
+++ gocept.selenium/trunk/CHANGES.txt	2011-11-29 16:35:35 UTC (rev 123528)
@@ -4,7 +4,7 @@
 0.12 (unreleased)
 -----------------
 
-- Nothing changed yet.
+- API expansion: added ``getAllWindow*`` and ``selectWindow``.
 
 
 0.11 (2011-09-15)
@@ -55,7 +55,7 @@
 ----------------
 
 - Fixed tests for the StaticFilesLayer to pass with Python 2.4 through 2.7.
-- API expandsion: ``getSelectOptions``
+- API expansion: ``getSelectOptions``
 
 
 0.7 (2010-08-16)

Modified: gocept.selenium/trunk/src/gocept/selenium/selenese.py
===================================================================
--- gocept.selenium/trunk/src/gocept/selenium/selenese.py	2011-11-29 16:29:59 UTC (rev 123527)
+++ gocept.selenium/trunk/src/gocept/selenium/selenese.py	2011-11-29 16:35:35 UTC (rev 123528)
@@ -109,6 +109,10 @@
         self.selenium.do_command("open", [url, ignoreResponseCode])
 
     @passthrough
+    def selectWindow(self, name):
+        pass
+
+    @passthrough
     def addCustomRequestHeader(self, key, value):
         pass
 
@@ -406,6 +410,18 @@
                 'No alert occured.')
         return self.selenium.get_alert()
 
+    @passthrough
+    def getAllWindowIds(self):
+        pass
+
+    @passthrough
+    def getAllWindowNames(self):
+        pass
+
+    @passthrough
+    def getAllWindowTitles(self):
+        pass
+
     @assert_type('locator_pattern')
     @passthrough
     def getAttribute(self, locator):



More information about the checkins mailing list