繁体   English   中英

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

[英]how to send your long WhatsApp message as a single message instead of multiple messages

我在使用 selenium Python 向 WhatsApp Web 发送长消息时遇到问题。 我的消息是 UTF-8 格式。 以下是该消息的示例。

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

પ્રથમભવ:- ગુણસેન(રાજા) – અગ્નિશર્ફફ๪ફ๪ફફફ

રાજમાર્ગપરથીમહાજનોના108રથોનેરથમહેલતરફજતાજોઇને,નગરવાસીલોકોઅનેકતર્ક-વિતર્કકરવાલાગ્યા。

还请找到我迄今为止尝试过的代码。

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)

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

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM