File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11
11
12
12
username = str (input ('Your Username:' )) # asking for mail id
13
13
password = str (input ('Your Password:' )) #asking for password
14
+ Driver_path = str (input ('Enter your path where the chrome drive is installed:' )) #Saving the path of chrome driver
14
15
15
16
#Providing camera and microphone access to the meeting
16
17
26
27
"profile.default_content_setting_values.media_stream_camera" : 1 ,
27
28
"profile.default_content_setting_values.notifications" : 1
28
29
})
29
- browser = webdriver .Chrome (chrome_options = opt ,executable_path = "C: \\ Users \\ path where your chrome driver is saved" ) #Enter the path of your chrome driver
30
+ browser = webdriver .Chrome (chrome_options = opt ,executable_path = Driver_path ) #Entering the path of chrome driver
30
31
browser .maximize_window ()
31
32
action = ActionChains (browser )
32
33
You can’t perform that action at this time.
0 commit comments