Fixed message getting filled in search box insted of msg_box

This commit is contained in:
Rishi Dutt Shukla 2020-09-15 21:33:48 +05:30
parent 7d165bc939
commit c9b74c552c
1 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
from selenium import webdriver
import os
from webdriver_manager.chrome import ChromeDriverManager #1st changer
@ -24,14 +23,14 @@ def main():
user.click()
# The classname of message box may vary.
msg_box = driver.find_element_by_class_name('_13mgZ')
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_class_name('_3M-N-')
button = driver.find_element_by_xpath('//*[@id="main"]/footer/div[1]/div[3]/button')
button.click()
print('Bombing Complete!!')
banner()
main()
main()