51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 4267|回复: 1
打印 上一主题 下一主题

Python selenium error:TypeError: 'module' object is not callable

[复制链接]
  • TA的每日心情
    开心
    2016-1-12 17:09
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    跳转到指定楼层
    1#
    发表于 2016-1-14 13:39:04 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    从Selenium IDE里export test case as Python 2/unittest/Remote Control导出python的脚本如下:

    # -*- coding: utf-8 -*-
    from selenium import selenium
    import unittest, time, re
    class remote_python_baidu(unittest.TestCase):
        def setUp(self):
            self.verificationErrors = []
            self.selenium = selenium("localhost", 4444, "*chrome", "https://www.baidu.com/")
            self.selenium.start()
       
        def test_remote_python_baidu(self):
            sel = self.selenium
            sel.open("/")
            sel.click("id=kw")
            sel.type("id=kw", "python")
            sel.click("id=su")
       
        def tearDown(self):
            self.selenium.stop()
            self.assertEqual([], self.verificationErrors)
    if __name__ == "__main__":
        unittest.main()




    在Python里执行总报错:
    E
    ======================================================================
    ERROR: test_remote_python_baidu (__main__.remote_python_baidu)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "D:\auto_test\remote_python_baidu.py", line 8, in setUp
        self.selenium = selenium("localhost", 4444, "*chrome", "https://www.baidu.com/")
    TypeError: 'module' object is not callable
    ----------------------------------------------------------------------
    Ran 1 test in 0.020s
    FAILED (errors=1)

    请问是什么原因引起的?
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    该用户从未签到

    2#
    发表于 2016-1-28 14:58:08 | 只看该作者
    为什么还有selenium 1.0,用selenium 2.0多好
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-8 23:07 , Processed in 0.066422 second(s), 22 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表