-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathIds.py
More file actions
88 lines (68 loc) · 3.11 KB
/
Copy pathIds.py
File metadata and controls
88 lines (68 loc) · 3.11 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# encoding: utf-8
# 新消息tab
id_page_message_tab = 'com.small.target:id/ly_message'
# 未读围观消息数目
id_page_unread_message_num = 'com.small.target:id/text_ly_onlooker_num'
# 我的围观按钮
id_page_my_message_btn = 'com.small.target:id/ly_onlooker'
# 我的围观人数信息
id_page_my_follow_info = 'com.small.target:id/textOnlookerNumByNow'
# 我的围观收入信息
id_page_my_follow_money_info = 'com.small.target:id/textOnlookerNumByFormerly'
# 我的围观消息列表
id_page_my_follow_message_list = 'com.small.target:id/base_list_view'
# 我的围观消息条目
id_page_my_follow_message_item = 'com.small.target:id/ly_root'
# 我的围观消息条目未读标记
id_page_my_follow_message_item_new = 'com.small.target:id/textNewMessage'
# 我的围观消息条目更新时间
id_page_my_follow_message_item_time = 'com.small.target:id/text_time'
# 我的围观消息详情页
id_page_my_follow_message_detail = 'com.small.target:id/ly_header_root'
# 我的围观消息详情页点赞按钮
id_page_my_follow_message_detail_zan_btn = 'com.small.target:id/ly_zan'
# 我的围观消息详情页赞赏按钮
id_page_my_follow_message_detail_money_btn = 'com.small.target:id/ly_money'
# 返回按钮
id_page_back_btn = 'com.small.target:id/title_left_img'
# 首页tab
id_page_home_tab = 'com.small.target:id/ly_goal'
# 首页围观消息条目右下角分享按钮
id_page_home_tab_item_share_btn = 'com.small.target:id/ly_search'
# 首页围观消息条目右下角围观按钮
id_page_home_tab_item_follow_btn = 'com.small.target:id/ly_onlooker'
# 首页围观消息条目评论按钮
id_page_home_tab_item_comment_btn = 'com.small.target:id/ly_comment'
# 首页围观消息条目标题
id_page_home_tab_item_title = 'com.small.target:id/text_sign_title'
# 围观详情钱的描述
id_page_follow_detail_money_info = 'com.small.target:id/text_goal_money'
# 围观结果弹窗内容
id_modal_follow_result_content = 'com.small.target:id/text_content'
#微信顶部搜索框
id_wechat_search_btn = 'com.tencent.mm:id/r_'
#微信底部tab1按钮
id_wechat_tab1_btn = 'com.tencent.mm:id/dk_'
#微信底部搜索页面文字输入框
id_wechat_search_txt = 'com.tencent.mm:id/m7'
#微信底部搜索页面结果列表
id_wechat_search_result_list = 'com.tencent.mm:id/c4z'
#微信底部搜索页面结果文字
id_wechat_search_result_item_txt = 'com.tencent.mm:id/s7'
#微信底部导航栏
id_wechat_bottom_tabs = 'com.tencent.mm:id/bw'
#微信消息页面底部文字输入框
id_wechat_message_txt = 'com.tencent.mm:id/aqe'
#微信消息页面底部文字发送按钮
id_wechat_message_send_btn = 'com.tencent.mm:id/aql'
#微信消息页面底部+号
id_wechat_message_more_entrance_btn = 'com.tencent.mm:id/aqk'
#微信消息页面底部详细功能列表
id_wechat_message_more_func_list = 'com.tencent.mm:id/zo'
#微信消息页面底部详细功能item文字描述
id_wechat_message_more_func_item_txt = 'com.tencent.mm:id/zr'
#微信tab1最近消息列表
id_wechat_recent_message_list = 'com.tencent.mm:id/dcf'
#微信tab1最近消息item文字
id_wechat_recent_message_item_txt = 'com.tencent.mm:id/baj'