Python+selenium之读取配置文件内容 Python支持很多配置文件的读写,此例子中介绍一种配置文件的读取数据,叫ini文件,python中有一个类ConfigParser支持读ini文件. 将ini文件命名为config.ini,代码如下所示 #this is config file,only store browser type and server URL [browserType] #browserName=Firefox browserName=Chrome #browser…