File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 9
9
time .sleep (10 )
10
10
11
11
username = chrome .find_element_by_xpath ('//*[@id="loginForm"]/div/div[1]/div/label/input' )
12
- username .send_keys (input ()) #enter username
12
+ username .send_keys (input ("Enter your username: " )) #enter username
13
+ print ("Enter your Password: " )
13
14
password = chrome .find_element_by_xpath ('//*[@id="loginForm"]/div/div[2]/div/label/input' )
14
15
pswd = getpass ()
15
16
password .send_keys (pswd )
18
19
time .sleep (10 )
19
20
20
21
search_bar = chrome .find_element_by_xpath ('//*[@id="react-root"]/section/nav/div[2]/div/div/div[2]/input' )
21
- search_bar .send_keys (input ()) #enter the username to be searched
22
+ search_bar .send_keys (input ("Enter the username of the other person: " )) #enter the username to be searched
22
23
time .sleep (7 )
23
24
search_bar .send_keys (Keys .ENTER )
24
25
search_bar .send_keys (Keys .ENTER )
You can’t perform that action at this time.
0 commit comments