I have the following class in Python.
import os,ConfigParser class WebPageTestConfigUtils: def __init__(self, configParser=None, configFilePath=None):
You are defining
... self.configParser = ConfigParser.RawConfigParser() ...
And accessing using
... configParser.read(configFilePath) ...
You have to access as self.configParser.
self.configParser