使用python读取yaml文件

Posted 奔奔-武

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用python读取yaml文件相关的知识,希望对你有一定的参考价值。

在做APP测试时,通常需要把参数存到一个字典变量中,这时可以将参数写入yaml文件中,再读取出来。

新建yaml文件(android_caps.yaml),文件内容为:

 

1 platformName: Android
2 platformVersion: 5.1
3 deviceName: Android Emulator
4 appPackage: com.xx.xx
5 appActivity: com.xx.xx.activity.WelcomeActivity

 

python读取yaml文件:

 

1 import yaml
2 text = yaml.load(open(android_caps.yaml))
3 print(text)
4 print(type(text))

 

输出结果为:

{‘deviceName‘: ‘Android Emulator‘, ‘platformName‘: ‘Android‘, ‘platformVersion‘: ‘5.1‘, ‘appActivity‘: ‘com.xx.xx.activity.WelcomeActivity‘, ‘appPackage‘: ‘com.xx.xx‘}
<class ‘dict‘>

 


以上是关于使用python读取yaml文件的主要内容,如果未能解决你的问题,请参考以下文章

python之yaml文件读取

python之yaml文件读取

python读取yaml配置文件

在 python 中读取 YAML 配置文件并使用变量

python——Yaml

Python配置文件管理之ini和yaml文件读取