如何自动化 web whatsapp 以使用 win32 api 和 pyautogui 发送消息?
How to automate web whatsapp to send messases with win32 api and pyautogui?
谁能告诉我如何使 Web WhatsApp 自动向联系人列表中的每个人发送消息
或者建议我更好的选择,请记住我不能购买付费 API。
你可以使用 web.whatsapp.com url:
import webbrowser
import time
import pyautogui
phone = "12345678901"
text = "my message"
webbrowser.open(f"https://web.whatsapp.com/send?phone={phone}&text={text}&app_absent=0")
time.sleep(9) # wait for whatsapp web
pyautogui.click() # move your mouse to textbox before
pyautogui.press("enter")
我试过 matan h 的答案,发现了几个错误。
我已经按照下面的代码更新了 URL。
import webbrowser
import time
import pyautogui as gui
m_number = '91987654321' #country code and mobile number without '+' symbol
message = "You........"
url = 'https://web.whatsapp.com/send?phone='+m_number+'&text='+message+'&app_absent=0'
webbrowser.open(url)
time.sleep(10) #loading page time
gui.press('enter')
谁能告诉我如何使 Web WhatsApp 自动向联系人列表中的每个人发送消息 或者建议我更好的选择,请记住我不能购买付费 API。
你可以使用 web.whatsapp.com url:
import webbrowser
import time
import pyautogui
phone = "12345678901"
text = "my message"
webbrowser.open(f"https://web.whatsapp.com/send?phone={phone}&text={text}&app_absent=0")
time.sleep(9) # wait for whatsapp web
pyautogui.click() # move your mouse to textbox before
pyautogui.press("enter")
我试过 matan h 的答案,发现了几个错误。
我已经按照下面的代码更新了 URL。
import webbrowser
import time
import pyautogui as gui
m_number = '91987654321' #country code and mobile number without '+' symbol
message = "You........"
url = 'https://web.whatsapp.com/send?phone='+m_number+'&text='+message+'&app_absent=0'
webbrowser.open(url)
time.sleep(10) #loading page time
gui.press('enter')