在firefox中使用selenium

时间:2012-08-29 20:31:45

标签: python firefox selenium

您好我想在下载弹出窗口中单击“确定”,但是当我尝试

drive = selenium.selenium.selenium()
drive.choose_ok_on_next_confirmation()

它给了我一个错误AttributeError: type object 'selenium' has no attribute 'selenium'。我已经尝试为首选项设置MIME类型,但它不起作用。

2 个答案:

答案 0 :(得分:0)

您如何导入selenium模块?

快速谷歌搜索找到此页面:Selenium RC with Python in 30 seconds。该页面底部的代码是如何启动并运行selenium实例的最小示例。

答案 1 :(得分:0)

目前还不清楚你在这里使用的是什么,但假设你只是使用了selenium遥控器你应该可以做到

from selenium import selenium

接着是

sel = selenium("localhost", 4444, "firefox", "http://www.google.com")

或类似的东西。你应该仔细看看documentation