51Testing软件测试论坛

标题: 提示错误: TypeError: open() missing 1 required positional argument: 'url' [打印本页]

作者: 测试积点老人    时间: 2021-8-4 13:10
标题: 提示错误: TypeError: open() missing 1 required positional argument: 'url'
  1. 封装:
  2. from selenium import webdriver
  3. def brower(type_):
  4.     try:
  5.         driver = getattr(webdriver, type_)()
  6.     except:
  7.         driver = webdriver.Chrome()
  8.     return driver
  9. class web_ui:
  10.     # driver = webserver.Chrome()
  11.     # 构造函数
  12.     def __init__(self, type_):
  13.         self.driver = brower(type_)
  14.     # 打开url
  15.     def open(self, url):
  16.         self.driver.get(url)
  17.     # 元素定位
  18.     def locator(self, value):
  19.         return self.driver.find_element(value)
  20.     # 点击
  21.     def click_(self, name, value):
  22.         self.locator(name, value).click()
  23.     # 输入
  24.     def send_(self, name, value, txt):
  25.         self.locator(name, value).send_keys(txt)
  26.     # 退出
  27.     def quit_(self):
  28.         self.driver.quit()
  29.     # 等待
  30.     def sleep_(self, value=10):
  31.         self.driver.implicitly_wait(value)
  32. 调用:
  33. from selenium1.web_ui import web_ui
  34. web_ui('Chrome')
  35. web_ui.open('http://www.baidu.com')
  36. 提示错误:
  37. TypeError: open() missing 1 required positional argument: 'url'
复制代码



作者: bellas    时间: 2021-8-5 09:43
参考下这个链接https://blog.csdn.net/qq_34785659/article/details/104640040
作者: qqq911    时间: 2021-8-5 10:59
少传一个变量
作者: litingting0214    时间: 2021-8-5 14:01
https://blog.csdn.net/qq_34785659/article/details/104640040  参考下这篇文章




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2