@reconcrap/boss-recommend-mcp 2.1.21 → 2.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/bin/boss-recommend-mcp.js +4 -4
- package/config/screening-config.example.json +33 -33
- package/package.json +2 -1
- package/scripts/install-macos.sh +280 -280
- package/scripts/postinstall.cjs +44 -44
- package/skills/boss-chat/README.md +42 -42
- package/skills/boss-chat/SKILL.md +106 -106
- package/skills/boss-recommend-pipeline/README.md +13 -13
- package/skills/boss-recommend-pipeline/SKILL.md +219 -214
- package/skills/boss-recruit-pipeline/README.md +19 -19
- package/skills/boss-recruit-pipeline/SKILL.md +89 -89
- package/src/chat-mcp.js +127 -127
- package/src/chat-runtime-config.js +775 -775
- package/src/cli.js +573 -573
- package/src/core/boss-cards/index.js +199 -199
- package/src/core/browser/index.js +2416 -2385
- package/src/core/capture/index.js +1201 -1201
- package/src/core/cv-acquisition/index.js +238 -238
- package/src/core/cv-capture-target/index.js +299 -299
- package/src/core/greet-quota/index.js +71 -71
- package/src/core/infinite-list/index.js +1315 -1306
- package/src/core/reporting/legacy-csv.js +334 -332
- package/src/core/run/index.js +44 -27
- package/src/core/run/timing.js +33 -33
- package/src/core/screening/index.js +2135 -2135
- package/src/core/self-heal/index.js +973 -973
- package/src/core/self-heal/viewport.js +564 -564
- package/src/detached-worker.js +99 -99
- package/src/domains/chat/cards.js +137 -137
- package/src/domains/chat/constants.js +9 -9
- package/src/domains/chat/detail.js +113 -113
- package/src/domains/chat/index.js +7 -7
- package/src/domains/chat/jobs.js +620 -620
- package/src/domains/chat/page-guard.js +122 -122
- package/src/domains/chat/roots.js +56 -56
- package/src/domains/chat/run-service.js +571 -571
- package/src/domains/common/account-rights-panel.js +314 -314
- package/src/domains/common/recovery-settle.js +159 -159
- package/src/domains/recommend/actions.js +472 -472
- package/src/domains/recommend/cards.js +243 -243
- package/src/domains/recommend/colleague-contact.js +333 -333
- package/src/domains/recommend/constants.js +228 -159
- package/src/domains/recommend/detail.js +655 -646
- package/src/domains/recommend/filters.js +748 -377
- package/src/domains/recommend/index.js +4 -3
- package/src/domains/recommend/jobs.js +542 -542
- package/src/domains/recommend/location.js +736 -0
- package/src/domains/recommend/refresh.js +575 -351
- package/src/domains/recommend/roots.js +80 -80
- package/src/domains/recommend/run-service.js +1616 -878
- package/src/domains/recommend/scopes.js +246 -246
- package/src/domains/recruit/actions.js +277 -277
- package/src/domains/recruit/cards.js +74 -74
- package/src/domains/recruit/constants.js +236 -236
- package/src/domains/recruit/detail.js +588 -588
- package/src/domains/recruit/index.js +9 -9
- package/src/domains/recruit/instruction-parser.js +866 -866
- package/src/domains/recruit/refresh.js +45 -45
- package/src/domains/recruit/roots.js +68 -68
- package/src/domains/recruit/run-service.js +1620 -1620
- package/src/domains/recruit/search.js +3229 -3229
- package/src/index.js +121 -4
- package/src/parser.js +376 -8
- package/src/recommend-mcp.js +1174 -914
- package/src/recommend-scheduler.js +535 -469
- package/src/recruit-mcp.js +2121 -2121
|
@@ -1,182 +1,251 @@
|
|
|
1
|
-
export const RECOMMEND_TARGET_URL = "https://www.zhipin.com/web/chat/recommend";
|
|
2
|
-
|
|
3
|
-
export const RECOMMEND_PAGE_SCOPE_DEFAULT = "recommend";
|
|
4
|
-
|
|
5
|
-
export const RECOMMEND_PAGE_SCOPE_STATUS = Object.freeze({
|
|
6
|
-
recommend: "0",
|
|
7
|
-
latest: "1",
|
|
8
|
-
featured: "3"
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
export const RECOMMEND_PAGE_SCOPE_LABELS = Object.freeze({
|
|
12
|
-
recommend: "推荐",
|
|
13
|
-
latest: "最新",
|
|
14
|
-
featured: "精选"
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
export const RECOMMEND_IFRAME_SELECTORS = Object.freeze([
|
|
18
|
-
'iframe[name="recommendFrame"]',
|
|
19
|
-
'iframe[src*="/web/frame/recommend/"]',
|
|
20
|
-
"iframe"
|
|
21
|
-
]);
|
|
22
|
-
|
|
23
|
-
export const RECOMMEND_PAGE_SCOPE_TAB_SELECTOR = [
|
|
24
|
-
".tab-list .tab-item[data-status]",
|
|
25
|
-
".tab-wrap .tab-item[data-status]",
|
|
26
|
-
".tab-item[data-status]",
|
|
27
|
-
"[data-status]"
|
|
28
|
-
].join(", ");
|
|
1
|
+
export const RECOMMEND_TARGET_URL = "https://www.zhipin.com/web/chat/recommend";
|
|
2
|
+
|
|
3
|
+
export const RECOMMEND_PAGE_SCOPE_DEFAULT = "recommend";
|
|
4
|
+
|
|
5
|
+
export const RECOMMEND_PAGE_SCOPE_STATUS = Object.freeze({
|
|
6
|
+
recommend: "0",
|
|
7
|
+
latest: "1",
|
|
8
|
+
featured: "3"
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
export const RECOMMEND_PAGE_SCOPE_LABELS = Object.freeze({
|
|
12
|
+
recommend: "推荐",
|
|
13
|
+
latest: "最新",
|
|
14
|
+
featured: "精选"
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
export const RECOMMEND_IFRAME_SELECTORS = Object.freeze([
|
|
18
|
+
'iframe[name="recommendFrame"]',
|
|
19
|
+
'iframe[src*="/web/frame/recommend/"]',
|
|
20
|
+
"iframe"
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
export const RECOMMEND_PAGE_SCOPE_TAB_SELECTOR = [
|
|
24
|
+
".tab-list .tab-item[data-status]",
|
|
25
|
+
".tab-wrap .tab-item[data-status]",
|
|
26
|
+
".tab-item[data-status]",
|
|
27
|
+
"[data-status]"
|
|
28
|
+
].join(", ");
|
|
29
29
|
|
|
30
30
|
export const RECOMMEND_FILTER_SELECTORS = Object.freeze({
|
|
31
31
|
trigger: ".filter-label-wrap",
|
|
32
32
|
panel: ".filter-panel",
|
|
33
33
|
groups: Object.freeze({
|
|
34
|
+
activity: [
|
|
35
|
+
".filter-panel .check-box.activation",
|
|
36
|
+
".filter-panel .check-box.activity",
|
|
37
|
+
".filter-panel .check-box.activeTime",
|
|
38
|
+
".filter-panel .check-box.activityLevel",
|
|
39
|
+
".filter-panel .check-box.activity-level"
|
|
40
|
+
].join(", "),
|
|
34
41
|
recentNotView: ".filter-panel .check-box.recentNotView",
|
|
35
42
|
degree: ".filter-panel .check-box.degree",
|
|
36
43
|
gender: ".filter-panel .check-box.gender",
|
|
37
44
|
school: ".filter-panel .check-box.school"
|
|
38
45
|
}),
|
|
39
|
-
option: ".default.option, .options .option, .option",
|
|
40
|
-
activeOption: ".default.option.active, .options .option.active, .option.active",
|
|
41
|
-
confirmButton: ".filter-panel .btn, .filter-panel button",
|
|
42
|
-
checkBox: ".filter-panel .check-box"
|
|
43
|
-
});
|
|
46
|
+
option: ".default.option, .options .option, .option",
|
|
47
|
+
activeOption: ".default.option.active, .options .option.active, .option.active",
|
|
48
|
+
confirmButton: ".filter-panel .btn, .filter-panel button",
|
|
49
|
+
checkBox: ".filter-panel .check-box"
|
|
50
|
+
});
|
|
44
51
|
|
|
45
52
|
export const RECOMMEND_FILTER_GROUP_ORDER = Object.freeze([
|
|
46
53
|
"recentNotView",
|
|
47
54
|
"degree",
|
|
48
55
|
"gender",
|
|
49
|
-
"school"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
export const RECOMMEND_RECENT_NOT_VIEW_LABEL = "近14天没有";
|
|
53
|
-
|
|
54
|
-
export const RECOMMEND_CARD_SELECTOR = [
|
|
55
|
-
".candidate-card-wrap .card-inner[data-geek]",
|
|
56
|
-
".candidate-card-wrap [data-geek]",
|
|
57
|
-
"li.geek-info-card a[data-geekid]",
|
|
58
|
-
"a[data-geekid]"
|
|
59
|
-
].join(", ");
|
|
60
|
-
|
|
61
|
-
export const RECOMMEND_LIST_CONTAINER_SELECTORS = Object.freeze([
|
|
62
|
-
".recommend-list",
|
|
63
|
-
".recommend-list-wrap",
|
|
64
|
-
".candidate-list",
|
|
65
|
-
".candidate-card-list",
|
|
66
|
-
".candidate-card-wrap-list",
|
|
67
|
-
".geek-list",
|
|
68
|
-
".geek-list-wrap",
|
|
69
|
-
".card-list",
|
|
70
|
-
".list-wrap",
|
|
71
|
-
".content-list"
|
|
56
|
+
"school",
|
|
57
|
+
"activity"
|
|
72
58
|
]);
|
|
73
59
|
|
|
74
|
-
export const
|
|
75
|
-
".btn",
|
|
76
|
-
"button",
|
|
77
|
-
'[role="button"]',
|
|
78
|
-
'[class*="refresh"]',
|
|
79
|
-
'[ka*="refresh"]',
|
|
80
|
-
"a"
|
|
81
|
-
].join(", ");
|
|
60
|
+
export const RECOMMEND_ACTIVITY_GROUP = "activity";
|
|
82
61
|
|
|
83
|
-
export const
|
|
84
|
-
".finished-wrap",
|
|
85
|
-
".no-data-refresh",
|
|
86
|
-
".load-tips",
|
|
87
|
-
".empty-tip",
|
|
88
|
-
".empty-text",
|
|
89
|
-
".no-data",
|
|
90
|
-
"[class*=\"finished\"]",
|
|
91
|
-
"[class*=\"load-tips\"]"
|
|
92
|
-
]);
|
|
93
|
-
|
|
94
|
-
export const DETAIL_POPUP_SELECTORS = Object.freeze([
|
|
95
|
-
".dialog-wrap.active",
|
|
96
|
-
".boss-popup__wrapper",
|
|
97
|
-
".boss-popup_wrapper",
|
|
98
|
-
".boss-dialog_wrapper",
|
|
99
|
-
".boss-dialog",
|
|
100
|
-
".resume-item-detail",
|
|
101
|
-
".geek-detail-modal",
|
|
102
|
-
'[class*="popup"][class*="wrapper"]',
|
|
103
|
-
'[class*="dialog"][class*="wrapper"]'
|
|
104
|
-
]);
|
|
105
|
-
|
|
106
|
-
export const DETAIL_RESUME_IFRAME_SELECTORS = Object.freeze([
|
|
107
|
-
'iframe[src*="/web/frame/c-resume/"]',
|
|
108
|
-
'iframe[name*="resume"]'
|
|
109
|
-
]);
|
|
110
|
-
|
|
111
|
-
export const RECOMMEND_AVATAR_PREVIEW_SELECTORS = Object.freeze([
|
|
112
|
-
".boss-dialog__wrapper.avatar-preview",
|
|
113
|
-
".avatar-preview",
|
|
114
|
-
".dialog-wrap.active .avatar-preview",
|
|
115
|
-
".figure-preview"
|
|
116
|
-
]);
|
|
117
|
-
|
|
118
|
-
export const RECOMMEND_AVATAR_PREVIEW_CLOSE_SELECTORS = Object.freeze([
|
|
119
|
-
".avatar-preview .boss-popup__close",
|
|
120
|
-
".dialog-wrap.active .avatar-preview .boss-popup__close",
|
|
121
|
-
".dialog-wrap.active .boss-popup__close",
|
|
122
|
-
".boss-dialog__wrapper.avatar-preview .boss-popup__close",
|
|
123
|
-
".boss-popup__close",
|
|
124
|
-
".icon-close",
|
|
125
|
-
'[class*="close"]'
|
|
126
|
-
]);
|
|
62
|
+
export const RECOMMEND_ACTIVITY_GROUP_HEADING = "活跃度[单选]";
|
|
127
63
|
|
|
128
|
-
export const
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
|
|
135
|
-
'button[title*="关闭"]',
|
|
136
|
-
".icon-close",
|
|
137
|
-
'[aria-label*="关闭"]',
|
|
138
|
-
'[title*="关闭"]',
|
|
139
|
-
'[class*="close"]'
|
|
64
|
+
export const RECOMMEND_ACTIVITY_LEVELS = Object.freeze([
|
|
65
|
+
"不限",
|
|
66
|
+
"刚刚活跃",
|
|
67
|
+
"今日活跃",
|
|
68
|
+
"3日内活跃",
|
|
69
|
+
"本周活跃",
|
|
70
|
+
"本月活跃"
|
|
140
71
|
]);
|
|
141
72
|
|
|
142
|
-
export const
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
73
|
+
export const RECOMMEND_CURRENT_CITY_ONLY_LABEL = "仅推荐期望城市为本城市的牛人";
|
|
74
|
+
|
|
75
|
+
export const RECOMMEND_LOCATION_SELECTORS = Object.freeze({
|
|
76
|
+
trigger: [
|
|
77
|
+
".city-or-area-name",
|
|
78
|
+
".city-selecter-wrap",
|
|
79
|
+
".city-selector-wrap",
|
|
80
|
+
".location-selecter-wrap",
|
|
81
|
+
".location-selector-wrap",
|
|
82
|
+
".city-select",
|
|
83
|
+
".location-select",
|
|
84
|
+
".recommend-city",
|
|
85
|
+
".recommend-location",
|
|
86
|
+
'[class*="city-select"]',
|
|
87
|
+
'[class*="location-select"]',
|
|
88
|
+
'[class*="recommend-city"]'
|
|
89
|
+
],
|
|
90
|
+
popoverCandidates: [
|
|
91
|
+
".check-area-warp",
|
|
92
|
+
".check-area-bottom"
|
|
93
|
+
].join(", "),
|
|
94
|
+
checkboxCalibrated: [
|
|
95
|
+
".check-area-warp label.checkbox",
|
|
96
|
+
".check-area-bottom label.checkbox",
|
|
97
|
+
".check-area-warp .my-checkbox"
|
|
98
|
+
].join(", "),
|
|
99
|
+
checkboxCandidates: [
|
|
100
|
+
"label",
|
|
101
|
+
'[role="checkbox"]',
|
|
102
|
+
"input[type=\"checkbox\"]",
|
|
103
|
+
".checkbox",
|
|
104
|
+
".check-box",
|
|
105
|
+
'[class*="checkbox"]',
|
|
106
|
+
'[class*="check-box"]',
|
|
107
|
+
"span"
|
|
108
|
+
].join(", "),
|
|
109
|
+
checkboxInput: 'input[type="checkbox"], [role="checkbox"]',
|
|
110
|
+
confirmCandidates: [
|
|
111
|
+
'[class*="city"] button',
|
|
112
|
+
'[class*="city"] .btn',
|
|
113
|
+
'[class*="location"] button',
|
|
114
|
+
'[class*="location"] .btn',
|
|
115
|
+
"button",
|
|
116
|
+
".btn",
|
|
117
|
+
'[role="button"]'
|
|
118
|
+
].join(", ")
|
|
119
|
+
});
|
|
150
120
|
|
|
151
|
-
export const
|
|
152
|
-
".like-icon-and-text",
|
|
153
|
-
".resume-footer.item-operate [class*=\"collect\"]",
|
|
154
|
-
".resume-footer.item-operate [class*=\"favorite\"]",
|
|
155
|
-
".resume-footer.item-operate [class*=\"like\"]",
|
|
156
|
-
".resume-footer-wrap [class*=\"collect\"]",
|
|
157
|
-
".resume-footer-wrap [class*=\"favorite\"]",
|
|
158
|
-
".resume-footer-wrap [class*=\"like\"]",
|
|
159
|
-
".resume-footer [class*=\"collect\"]",
|
|
160
|
-
".resume-footer [class*=\"favorite\"]",
|
|
161
|
-
".resume-footer [class*=\"like\"]",
|
|
162
|
-
".resume-footer.item-operate button",
|
|
163
|
-
".resume-footer.item-operate .btn",
|
|
164
|
-
".resume-footer.item-operate span",
|
|
165
|
-
".resume-footer-wrap button",
|
|
166
|
-
".resume-footer-wrap .btn",
|
|
167
|
-
".resume-footer-wrap span",
|
|
168
|
-
".resume-footer button",
|
|
169
|
-
".resume-footer .btn",
|
|
170
|
-
".resume-footer span"
|
|
171
|
-
]);
|
|
121
|
+
export const RECOMMEND_RECENT_NOT_VIEW_LABEL = "近14天没有";
|
|
172
122
|
|
|
173
|
-
export const
|
|
174
|
-
"
|
|
175
|
-
".
|
|
176
|
-
".
|
|
177
|
-
"
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
"
|
|
182
|
-
|
|
123
|
+
export const RECOMMEND_CARD_SELECTOR = [
|
|
124
|
+
".candidate-card-wrap .card-inner[data-geek]",
|
|
125
|
+
".candidate-card-wrap [data-geek]",
|
|
126
|
+
"li.geek-info-card a[data-geekid]",
|
|
127
|
+
"a[data-geekid]"
|
|
128
|
+
].join(", ");
|
|
129
|
+
|
|
130
|
+
export const RECOMMEND_LIST_CONTAINER_SELECTORS = Object.freeze([
|
|
131
|
+
".recommend-list",
|
|
132
|
+
".recommend-list-wrap",
|
|
133
|
+
".candidate-list",
|
|
134
|
+
".candidate-card-list",
|
|
135
|
+
".candidate-card-wrap-list",
|
|
136
|
+
".geek-list",
|
|
137
|
+
".geek-list-wrap",
|
|
138
|
+
".card-list",
|
|
139
|
+
".list-wrap",
|
|
140
|
+
".content-list"
|
|
141
|
+
]);
|
|
142
|
+
|
|
143
|
+
export const RECOMMEND_END_REFRESH_SELECTOR = [
|
|
144
|
+
".btn",
|
|
145
|
+
"button",
|
|
146
|
+
'[role="button"]',
|
|
147
|
+
'[class*="refresh"]',
|
|
148
|
+
'[ka*="refresh"]',
|
|
149
|
+
"a"
|
|
150
|
+
].join(", ");
|
|
151
|
+
|
|
152
|
+
export const RECOMMEND_BOTTOM_MARKER_SELECTORS = Object.freeze([
|
|
153
|
+
".finished-wrap",
|
|
154
|
+
".no-data-refresh",
|
|
155
|
+
".load-tips",
|
|
156
|
+
".empty-tip",
|
|
157
|
+
".empty-text",
|
|
158
|
+
".no-data",
|
|
159
|
+
"[class*=\"finished\"]",
|
|
160
|
+
"[class*=\"load-tips\"]"
|
|
161
|
+
]);
|
|
162
|
+
|
|
163
|
+
export const DETAIL_POPUP_SELECTORS = Object.freeze([
|
|
164
|
+
".dialog-wrap.active",
|
|
165
|
+
".boss-popup__wrapper",
|
|
166
|
+
".boss-popup_wrapper",
|
|
167
|
+
".boss-dialog_wrapper",
|
|
168
|
+
".boss-dialog",
|
|
169
|
+
".resume-item-detail",
|
|
170
|
+
".geek-detail-modal",
|
|
171
|
+
'[class*="popup"][class*="wrapper"]',
|
|
172
|
+
'[class*="dialog"][class*="wrapper"]'
|
|
173
|
+
]);
|
|
174
|
+
|
|
175
|
+
export const DETAIL_RESUME_IFRAME_SELECTORS = Object.freeze([
|
|
176
|
+
'iframe[src*="/web/frame/c-resume/"]',
|
|
177
|
+
'iframe[name*="resume"]'
|
|
178
|
+
]);
|
|
179
|
+
|
|
180
|
+
export const RECOMMEND_AVATAR_PREVIEW_SELECTORS = Object.freeze([
|
|
181
|
+
".boss-dialog__wrapper.avatar-preview",
|
|
182
|
+
".avatar-preview",
|
|
183
|
+
".dialog-wrap.active .avatar-preview",
|
|
184
|
+
".figure-preview"
|
|
185
|
+
]);
|
|
186
|
+
|
|
187
|
+
export const RECOMMEND_AVATAR_PREVIEW_CLOSE_SELECTORS = Object.freeze([
|
|
188
|
+
".avatar-preview .boss-popup__close",
|
|
189
|
+
".dialog-wrap.active .avatar-preview .boss-popup__close",
|
|
190
|
+
".dialog-wrap.active .boss-popup__close",
|
|
191
|
+
".boss-dialog__wrapper.avatar-preview .boss-popup__close",
|
|
192
|
+
".boss-popup__close",
|
|
193
|
+
".icon-close",
|
|
194
|
+
'[class*="close"]'
|
|
195
|
+
]);
|
|
196
|
+
|
|
197
|
+
export const DETAIL_CLOSE_SELECTORS = Object.freeze([
|
|
198
|
+
".boss-popup__close",
|
|
199
|
+
".popup-close",
|
|
200
|
+
".modal-close",
|
|
201
|
+
".dialog-close",
|
|
202
|
+
".close-btn",
|
|
203
|
+
'button[aria-label*="关闭"]',
|
|
204
|
+
'button[title*="关闭"]',
|
|
205
|
+
".icon-close",
|
|
206
|
+
'[aria-label*="关闭"]',
|
|
207
|
+
'[title*="关闭"]',
|
|
208
|
+
'[class*="close"]'
|
|
209
|
+
]);
|
|
210
|
+
|
|
211
|
+
export const DETAIL_NETWORK_PATTERNS = Object.freeze([
|
|
212
|
+
/\/wapi\/zpjob\/view\/geek\/info\b/i,
|
|
213
|
+
/\/wapi\/zpitem\/web\/boss\/[^?#]*\/geek\/info\b/i,
|
|
214
|
+
/\/boss\/[^?#]*\/geek\/info\b/i,
|
|
215
|
+
/\/geek\/info\b/i,
|
|
216
|
+
/\/web\/frame\/c-resume\//i,
|
|
217
|
+
/resume/i
|
|
218
|
+
]);
|
|
219
|
+
|
|
220
|
+
export const FAVORITE_BUTTON_SELECTORS = Object.freeze([
|
|
221
|
+
".like-icon-and-text",
|
|
222
|
+
".resume-footer.item-operate [class*=\"collect\"]",
|
|
223
|
+
".resume-footer.item-operate [class*=\"favorite\"]",
|
|
224
|
+
".resume-footer.item-operate [class*=\"like\"]",
|
|
225
|
+
".resume-footer-wrap [class*=\"collect\"]",
|
|
226
|
+
".resume-footer-wrap [class*=\"favorite\"]",
|
|
227
|
+
".resume-footer-wrap [class*=\"like\"]",
|
|
228
|
+
".resume-footer [class*=\"collect\"]",
|
|
229
|
+
".resume-footer [class*=\"favorite\"]",
|
|
230
|
+
".resume-footer [class*=\"like\"]",
|
|
231
|
+
".resume-footer.item-operate button",
|
|
232
|
+
".resume-footer.item-operate .btn",
|
|
233
|
+
".resume-footer.item-operate span",
|
|
234
|
+
".resume-footer-wrap button",
|
|
235
|
+
".resume-footer-wrap .btn",
|
|
236
|
+
".resume-footer-wrap span",
|
|
237
|
+
".resume-footer button",
|
|
238
|
+
".resume-footer .btn",
|
|
239
|
+
".resume-footer span"
|
|
240
|
+
]);
|
|
241
|
+
|
|
242
|
+
export const GREET_BUTTON_RECOMMEND_SELECTORS = Object.freeze([
|
|
243
|
+
"button.btn-v2.btn-sure-v2.btn-greet",
|
|
244
|
+
".resume-footer.item-operate button.btn-v2",
|
|
245
|
+
".resume-footer-wrap button.btn-v2",
|
|
246
|
+
".resume-footer.item-operate button",
|
|
247
|
+
".resume-footer-wrap button",
|
|
248
|
+
".resume-footer button",
|
|
249
|
+
"button[class*=\"greet\"]",
|
|
250
|
+
"button[class*=\"sure\"]"
|
|
251
|
+
]);
|