-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdo.py
More file actions
30 lines (19 loc) · 810 Bytes
/
Copy pathdo.py
File metadata and controls
30 lines (19 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Author : Benjamin
# @Time : 2020/8/7 21:21
from utils import oneTest
from utils import diffUtils
# 多语言的xlsx中的国家排序
# CountryList = ["zh","en","ru","ar","zhHk","hi","th","in","fr","vi","pt","es"]
CountryList = ["zh","en","ru","ar","zhTW","hi","th","in","fr","vi","pt","es"]
# CountryList = ["zh","en","ar","hi","ru","vi","pt","th","in","zhHk","zhTW","fr","es","ja","ko","de"]
if __name__ == "__main__":
# 获取单个key的 所有国家值
name = "boost_permission_btn"
print("key: %s"%name)
readAllXML = oneTest.doAllXML(CountryList,name)
readAllXML.getAllXMLValue(1)
# 对比数据表格,传输xy坐标,默认 0,1
# xxx = diffUtils.diff("test.xlsx","Sheet1",CountryList,1,2)
# xxx.doMain()