-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathconstants.py
More file actions
executable file
·23 lines (18 loc) · 804 Bytes
/
constants.py
File metadata and controls
executable file
·23 lines (18 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
websiteUrl = "www.automated-bots.com"
contactUrl = "https://www.automated-bots.com/contact"
linkJobUrl = "https://www.linkedin.com/jobs/search/"
angelCoUrl = "https://angel.co/login"
globalLogicUrl = "https://www.globallogic.com/career-search-page/"
jobsPerPage = 25
fast = 2
medium = 3
slow = 5
botSpeed = slow
# Webdriver Elements
jobsPageUrl = "https://www.linkedin.com/jobs"
jobsPageCareerClass = "//div[contains(@class, 'careers')]"
testJobUrl = "https://www.linkedin.com/jobs/search/?currentJobId=3577461385&distance=25&f_AL=true&f_E=2&f_JT=F%2CP%2CC&f_SB2=3&f_WT=1%2C2%2C3&geoId=102221843&keywords=frontend"
totalJobs = "//small"
testPageUrl = testJobUrl +"&start="+ str(2)
offersPerPage = "//li[@data-occludable-job-id]"
easyApplyButton = '//button[contains(@class, "jobs-apply-button")]'