Merge pull request #16 from scienceLabwork/patch-1

Update wbomb.py
This commit is contained in:
Sameer Bhatt (debugger) 2020-03-21 10:46:46 +05:30 committed by GitHub
commit ff4b200470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
from selenium import webdriver
import os
from webdriver_manager.chrome import ChromeDriverManager #1st changer
def banner():
print('''
## ## ======= #### #### #### =======
@ -10,7 +11,7 @@ def banner():
#### #### ======= #### ## ## =======
''')
def main():
driver = webdriver.Chrome()
driver = webdriver.Chrome(ChromeDriverManager().install()) #2nd change
driver.get('https://web.whatsapp.com/')
name = input('Enter the name of user or group: ')