Skip to content

Instantly share code, notes, and snippets.

@robo-corg
Created November 3, 2010 20:17
Show Gist options
  • Save robo-corg/661641 to your computer and use it in GitHub Desktop.
Save robo-corg/661641 to your computer and use it in GitHub Desktop.
Fixed python based selenium rc example that accounts for the new ajaxy nature of the google search page.
"""
Copyright 2006 ThoughtWorks, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
from selenium import selenium
import unittest
class TestGoogle(unittest.TestCase):
def setUp(self):
self.selenium = selenium("localhost", \
4444, "*firefox", "http://www.google.com/webhp")
self.selenium.start()
def test_google(self):
sel = self.selenium
sel.open("http://www.google.com/webhp")
sel.do_command("type", ["q", "hello world"])
sel.do_command("waitForVisible", ["btnG"])
sel.click("btnG")
sel.do_command("waitForTitle", ["hello world - Google Search"])
def tearDown(self):
self.selenium.stop()
if __name__ == "__main__":
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment