Python:定義自己的ConfigParser

來源:互聯網
上載者:User

在Selenium項目實踐中,為處理頁面不同的link,button等頁面元素,最好把這些頁面元素和對應的Xpath寫入設定檔,本文試圖建立一個自訂的ConfigParser,處理設定檔的解析。

雖然是很小的一個類,但也從中學習到很多東東。

主要分三步:

1. 得到設定檔的路徑

一般來說檔案解析類會放在commonfunction目錄下,而設定檔會放在同級的configuration目錄下

在Python 中獲得當前路徑,使用os.getcwd()
或者os.path.abspath(os.curdir),print os.path.abspath('.')
要獲得上級目錄的路徑使用os.path.abspath('..')。

這樣我們在使用os.path.join方法就可以得到設定檔所在目錄。

2. 使用get方法得到每個section的option,這裡參考了limodou多年前的一篇文章。

3. 調用

在這裡學會了如何匯入上層目錄中模組或其他目錄(平級)下的模組,引用之前要先把上層目錄加到sys.path中

   import sys
   sys.path.append("..")

完整代碼如下,寫的有點爛,請各位多指教。

 

代碼

#!/usr/bin/env python
#coding=utf-8

import os
import sys
from ConfigParser import ConfigParser, NoOptionError, NoSectionError

class Parser(ConfigParser):
    
    def __init__(self, inifile, encoding=None):
        ConfigParser.__init__(self)
        self.inifile=inifile
        self.encoding = encoding
        if inifile:
            self.read(inifile)

                
    def get(self, sec, option, default=None):
        """Get an option value for given section or return default"""
        if self.has_option(sec, option):
            return ConfigParser.get(self, sec, option, raw=0, vars=None)
        else:
            return default
    
    def get_file_path(self, file):
        path = os.path.join(os.path.abspath(".."), "configuration")
        return os.path.join(path, file)

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.