如何将长WhatsApp消息作为一条消息而不是多条消息发送

时间:2020-01-01 04:31:18

标签: python selenium whatsapp

使用硒Python将长消息发送到whatsApp Web时遇到问题。我的信息是使用UTF-8格式。下面是该消息的示例。

સમરાદિત્ય ભવ– ૧ ભાગ– ૨૫

પ્રથમ-:- ગુણસેન(રાજા)–અગ્નિશર્મા(પુરોહિત)

રાજમાર્ગજોઇનેજોઇનેજોઇનેતર્કતર્ક

也请找到我到目前为止尝试过的代码。

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
import codecs
import time

#This code is to deal with the input files
grp_list_file = codecs.open('grp_list.txt','r','utf8')
grp_list_data = grp_list_file.read()
grp_list_split = grp_list_data.split('\n')
grp_list_len = len(grp_list_split)
grp_list_val_data = []

for i in range(grp_list_len):
    temp = grp_list_split[i]
    temp1 = temp.replace('\ufeff','')
    temp2 = temp1.replace('\r','')
    grp_list_val_data.append(temp2)
print('Input file processed successfully')


#This block deals with the input message file
msg_list_file = codecs.open('message.txt','r','utf-8')
msg_list_data = msg_list_file.read()
print('Message file input processed successfully')

#Keep this at here to avoid any future issues
grp_list_file.close()
msg_list_file.close()


#Open the whatsapp web
driver = webdriver.Firefox()
driver.get('https://web.whatsapp.com/')
input('Enter anyhing once the QR code has been scanned successfully')
act = ActionChains(driver)


#Let proceed with the sending message to all groups
for i in range(grp_list_len):
    name = grp_list_val_data[i]
    message = msg_list_data
    #Select the group
    user = driver.find_element_by_xpath('//span[@title = "{}"]'.format(name))
    user.click()
    msg_box = driver.find_element_by_class_name('_3u328')
#    msg_box.send_keys(Keys.SHIFT)
    act.send_keys(Keys.SHIFT,message).perform()
#    msg_box.send_keys(message)
#    act.key_up(Keys.SHIFT)
    send = driver.find_element_by_class_name('_3M-N-')
    time.sleep(10)
    send.click()
    print('Message sent successfully to : ',name)

任何人都可以帮助以单个消息而不是多个消息发送整个文本。

1 个答案:

答案 0 :(得分:0)

我找到了借助复制粘贴想法解决问题的方法。 首先,我将数据复制到剪贴板,然后将其粘贴到所需的文本框位置。

非常感谢您的时间和帮助。 :)