我收到 ConfigParser.NoSectionError: No section: 'TestInformation' 错误使用上面的代码。
def LoadTestInformation(self):
config = ConfigParser.ConfigParser()
print(os.path.join(os.getcwd(),'App.cfg'))
with open(os.path.join(os.getcwd(),'App.cfg'),'r') as configfile:
config.read(configfile)
return config.items('TestInformation')
文件路径是正确的,我已经仔细检查了。并且配置文件有 TestInformation 部分
[TestInformation]
IEPath = 'C:\Program Files\Internet Explorer\iexplore.exe'
URL = 'www.google.com.au'
'''date format should be '<Day> <Full Month> <Full Year>'
SystemDate = '30 April 2013'
在 app.cfg 文件中。不知道我做错了什么