Fixed the xpath

Fixed the xpath of message.box & button.send
This commit is contained in:
getPoland 2021-10-05 19:31:51 +02:00 committed by GitHub
parent 8d735c5002
commit 1bddda2212
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 21 deletions

View File

@ -1,36 +1,41 @@
from selenium import webdriver
import os
from webdriver_manager.chrome import ChromeDriverManager #1st changer
from webdriver_manager.chrome import ChromeDriverManager # 1st changer
def banner():
print('''
print('''
## ## ======= #### #### #### =======
\ \ #### / / # # ## ## / /\ \ / /\ \ # #
\ \ / /\ \ / / #====== ## ## / / \ \/ / \ \ #======
\ \/ / \ \/ / # # ## ## / / #### \ \ # #
#### #### ======= #### ## ## =======
''')
def main():
driver = webdriver.Chrome(ChromeDriverManager().install()) #2nd change
driver.get('https://web.whatsapp.com/')
driver = webdriver.Chrome(ChromeDriverManager().install()) # 2nd change
driver.get('https://web.whatsapp.com/')
name = input('Enter the name of user or group: ')
msg = input('Enter your message: ')
count = int(input('Enter the count: '))
name = input('Enter the name of user or group: ')
msg = input('Enter your message: ')
count = int(input('Enter the count: '))
input('Enter any key after scanning QR code')
input('Enter any key after scanning QR code')
user = driver.find_element_by_xpath('//span[@title = "{}"]'.format(name))
user.click()
# The classname of message box may vary.
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('/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!!')
user = driver.find_element_by_xpath('//span[@title = "{}"]'.format(name))
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]')
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.click()
print('Bombing Complete!!')
banner()
main()
main()