51Testing软件测试论坛

标题: 实例演练:Python3+Selenium3自动化之配置文件读取 [打印本页]

作者: lsekfe    时间: 2022-1-5 14:25
标题: 实例演练:Python3+Selenium3自动化之配置文件读取
(1)创建配置文件read.ini
  在Readini文件下创建read.ini的配置文件:
  1.  [webElent]
  2.   url = [url]http://127.0.0.1/zentao/user-login-L3plbnRhby8=.html[/url]
复制代码
(2)创建读取配置文件的方法
  注意: 使用前导入configparser类。
  1.   #读取配置文件内容
  2.       def get_ini_value(self,value):
  3.           config = configparser.ConfigParser()
  4.           file_path =os.path.dirname(os.getcwd()) + '/Readini/read.ini'
  5.           config.read(file_path)
  6.           browser = config.get('webElent', value)
  7.           return browser
复制代码
(3)调用配置文件
  1.  print(get_ini_value(‘url’))
复制代码
(4)读取配置文件结果
  1.  def  setUp(self):
  2.      self.driver=webdriver.Chrome()
  3.      self.PO=Page_Object(self.driver)
  4.      self.PO.max_window_page()
  5.      sleep(1)
  6.      #调用配置文件里面的url
  7.      self.PO.open_url(self.PO.get_ini_value('url')) #配置文件的方法放置在Page_Object基类中
  8.      sleep(1)
  9.      self.PO.is_title(u'禅道')
  10.      sleep(1)
复制代码
[attach]136056[/attach]








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