Merge pull request #26 from rduttshukla/master

Fixed message getting filled in search box insted of msg_box
This commit is contained in:
Sameer Bhatt (debugger) 2020-09-16 09:41:20 +05:30 committed by GitHub
commit 12c3210dc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,3 @@
from selenium import webdriver from selenium import webdriver
import os import os
from webdriver_manager.chrome import ChromeDriverManager #1st changer from webdriver_manager.chrome import ChromeDriverManager #1st changer
@ -24,12 +23,12 @@ def main():
user.click() user.click()
# The classname of message box may vary. # 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): for i in range(count):
msg_box.send_keys(msg) msg_box.send_keys(msg)
# The classname of send button may vary. # 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() button.click()
print('Bombing Complete!!') print('Bombing Complete!!')