mirror of
https://github.com/bhattsameer/Bombers.git
synced 2023-08-10 21:12:53 +03:00
commit
04a9cfc45b
9
wbomb.py
9
wbomb.py
@ -1,6 +1,8 @@
|
||||
from selenium import webdriver
|
||||
import os
|
||||
from webdriver_manager.chrome import ChromeDriverManager # 1st changer
|
||||
|
||||
|
||||
def banner():
|
||||
print('''
|
||||
## ## ======= #### #### #### =======
|
||||
@ -9,6 +11,8 @@ def banner():
|
||||
\ \/ / \ \/ / # # ## ## / / #### \ \ # #
|
||||
#### #### ======= #### ## ## =======
|
||||
''')
|
||||
|
||||
|
||||
def main():
|
||||
driver = webdriver.Chrome(ChromeDriverManager().install()) # 2nd change
|
||||
driver.get('https://web.whatsapp.com/')
|
||||
@ -23,14 +27,15 @@ def main():
|
||||
user.click()
|
||||
|
||||
# The classname of message box may vary.
|
||||
msg_box = driver.find_element_by_xpath('//*[@id="main"]/footer/div[1]/div[2]/div/div[2]')
|
||||
msg_box = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[4]/div[1]/footer/div[1]/div/div/div[2]/div[1]/div/div[2]')
|
||||
|
||||
for i in range(count):
|
||||
msg_box.send_keys(msg)
|
||||
# The classname of send button may vary.
|
||||
button = driver.find_element_by_xpath('//*[@id="main"]/footer/div[1]/div[3]/button')
|
||||
button = driver.find_element_by_xpath('/html/body/div[1]/div[1]/div[1]/div[4]/div[1]/footer/div[1]/div/div/div[2]/div[2]/button')
|
||||
button.click()
|
||||
print('Bombing Complete!!')
|
||||
|
||||
|
||||
banner()
|
||||
main()
|
Loading…
Reference in New Issue
Block a user