美文网首页
Python学习第四 天

Python学习第四 天

作者: 敏儿最棒 | 来源:发表于2017-07-07 11:20 被阅读0次

    遇到了一个报错为TypeError: 'module' object is not callable是因为方法调用错误time不是方法而我却调用了

    手动重新写下打开信联平台的代码

    #--*-  coding:utf-8-*-

    from selenuim import webdriver

    import time

    drive=webdriver.Firefox()

    drive.maximize_window()

    time.sleep(2)

    drive.get("http://10.180.29.20:8080/fbms/login.do")

    time.sleep(1)

    drive.find_element_by_xpath("/html/body/div[2]/table/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr/td[2]/form/table/tbody/tr[1]/td[2]/input").send_keys("000000")

    drive.find_element_by_xpath("/html/body/div[2]/table/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr/td[2]/form/table/tbody/tr[2]/td[2]/input").send_keys("123")

    drive.find_element_by_xpath("/html/body/div[2]/table/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr/td[2]/form/table/tbody/tr[3]/td[2]/img[1]").click()

    相关文章

      网友评论

          本文标题:Python学习第四 天

          本文链接:https://www.haomeiwen.com/subject/gcthhxtx.html