def test_google(self):
sel = self.selenium
sel.open("http://www.google.com/webhp")
sel.type("q", "hello world")
sel.click("btnG")
sel.wait_for_page_to_load("5000")
self.assertEqual("hello world - Google Search", sel.get_title())
#self.assertEqual(u'hello world - Google \u641c\u7d22', sel.get_title())
#print sel.get_title()
# def tearDown(self):
# self.selenium.stop()
if __name__ == "__main__":
unittest.main()
运行报错:
---------- Python ----------
Traceback (most recent call last):
File "test_google.py", line 17, in <module>
from selenium import selenium
File "Z:\I\selenium\selenium-python-client-driver-0.9.2\selenium.py", line 170
raise Exception, result
^
SyntaxError: invalid syntax
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
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.
"""