我已经用谷歌搜索了答案,但.stop()
经常提到的对我不起作用。运行测试的 Chrome 窗口保持打开状态。
def test_getResults(self):
sel = selenium('localhost', 4444, "*chrome", 'http://blackpearl/')
sel.start()
# do stuff
def tearDown(self):
sel = selenium('localhost', 4444, "*chrome", 'http://blackpearl/')
sel.close()
sel.stop()
有任何想法吗?我将 Selenium Server 2.8.0 与 Python 2.6 一起使用,并且主要使用 Chrome 14 窗口进行测试。