Python中,常用Selenium方法封装(6)

封装了读取 Yaml 格式文件内容的方法


class YamlHelper(object):

    def get_config_dict(self, f):
        """
        获取所有配置
        :param f: 想要读取的 yaml 文件
        :return: 字典方式
        """
        with open(f, mode='r', encoding='utf8') as file_config:
            config_dict = yaml.load(file_config.read())
            return config_dict

你可能感兴趣的:(Python中,常用Selenium方法封装(6))