appium结合yaml文件实现参数化

1、appium读取yaml文件内的中文,在运行时中文乱码

解决:读取文件时,设置以utf-8编码读取

search_data=yaml.safe_load(open("search.yaml",encoding='utf-8'))

searml.yam文件内容如下:

-[游戏]

-[game]

2、多台手机切换时,可将app的启动参数,封装进yaml文件中

参考文章 https://www.cnblogs.com/bugbreak/p/12083026.html

你可能感兴趣的:(APPIUM)