This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.py
44 lines (41 loc) · 2.29 KB
/
paths.py
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
twitter_link = 'https://twitter.com/' # twitter url
'''Login'''
# login button xpath
log_in_button_path = '//*[@id="layers"]/div/div[1]/div/div/div/div[2]/div[2]/div/div/div[1]/a'
# send email button xpath
send_email_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/div/div/div[2]/\
div[2]/div/div/div/div[5]/label/div/div[2]/div/input'
# next button xpath
next_button_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/div/div/div[2]/\
div[2]/div/div/div/div[6]/div/span/span'
# send password button xpath
send_password_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/div/div/div[2]\
/div[2]/div[1]/div/div/div[3]/div/label/div/div[2]/div[1]/input'
# verify button xpath
verify_button_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/div/div/div[2]/\
div[2]/div[1]/div/div[2]/label/div/div[2]/div/input'
# next button verify xpath
next_button_verify_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/div/div/div\
[2]/div[2]/div[2]/div/div/div/div/div/span/span'
# final login button xpath
send_all_data_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/div/div/div[2]/di\
v[2]/div[2]/div/div[1]/div/div/div/div/span/span'
'''After verification'''
# button after authentication xpath
close_two_factor_authentication_path = '//*[@id="layers"]/div[2]/div/div/div/div/div/div[2]/div[2]/\
div/div[1]/div/div/div/div[1]/div/div/svg'
# search button xpath
search_twitter_button_path = '//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[2]/div/div[2\
]/div/div/div/div[1]/div/div/div/form/div[1]/div/div/div/label/div[2]/div/input'
# select people xpath
select_people_button_path = '//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[1]/div/div[1]/\
div[1]/div[2]/nav/div/div[2]/div/div[3]/a/div/div/span'
# most popular account xpath
select_first_account_path = '//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[1]/div/div[3]/d\
iv/section/div/div/div[1]/div/div/div/div/div[2]/div[1]/div[1]/div/div[1]/a/div/div[1]/span/span'
'''On the account page'''
# first post xpath
last_post_path = '//*[@id="react-root"]/div/div/div[2]/main/div/div/div/div[1]/div/div[3]/div/div/section\
/div/div/div[1]'
# class of the post
class_path = 'css-901oao r-18jsvk2 r-37j5jr r-a023e6 r-16dba41 r-rjixqe r-bcqeeo r-bnwqim r-qvutc0'