好的,我用 selenium 测试了一些自动化,我开始工作了。我为python做了一个脚本的导出。当我尝试运行它生成的 python 脚本时,它给了我一个“SyntaxError:无效语法”错误消息。这是有问题的python脚本:
from selenium import selenium
import unittest, time, re
class WakeupCall(unittest.TestCase):
def setUp(self):
self.verificationErrors = []
self.selenium = selenium("localhost", 4444, "*chrome", "http://the.web.site")
self.selenium.start()
def test_wakeup_call(self):
sel = self.selenium
sel.open("/index.php#deposit")
sel.wait_for_page_to_load("30000")
sel.click("link=History")
sel.wait_for_page_to_load("30000")
try: self.failUnless(sel.is_text_present("key phrase number 1."))
except AssertionError, e: self.verificationErrors.append(str(e))
最后一行是生成“SyntaxError:无效语法”错误消息的原因。逗号下面有个“^”。脚本的其余部分如下:
def tearDown(self):
self.selenium.stop()
self.assertEqual([], self.verificationErrors)
if __name__ == "__main__":
unittest.main()