0

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

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

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

4

2 回答 2

0

你是如何导入硒模块的?

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

于 2012-08-29T20:49:19.937 回答
0

目前尚不清楚您在这里使用的是什么,但假设您只是使用硒遥控器,您应该能够做到

from selenium import selenium

其次是

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

或类似的东西。你真的应该仔细看看文档

于 2012-08-29T20:56:05.820 回答