whatsapp

lib pywhatkit can't send slash(bar) '/' in whatsapp

lib pywhatkit can't send slash(bar) '/' in whatsapp Question: I want to be able to send a link with pywhatkit on whatsapp, but when typing whenever it reaches the ‘/’ it stops typing in the text box and starts typing in the object to look for other contacts, does anyone know how to solve this? …

Total answers: 1

whatsapp bot without third party like Twilio or web driver

whatsapp bot without third party like Twilio or web driver Question: I’m planning to integrate a simple chatbot to WhatsApp which I build using fastapi and python. My goal is to send/receive messages to users using the WhatsApp Api. I want to know how can I connect WhatsApp Api without using a web driver or …

Total answers: 1

Send Message using Pywhatkit Instantly

Send Message using Pywhatkit Instantly Question: I am using Pywhatkit to send WhatsApp messages. However, it would be helpful if it could do it instantly rather than at a set time. Is there any alternative to Pywhatkit, or is there a solution? pywhatkit.sendwhatmsg(‘+44xxxxxxxx’, ‘Test Msg.’, 15, 20) Asked By: user15473634 || Source Answers: The following …

Total answers: 1

Flask application does not compile when I put the pywhatkit library inside

Flask application does not compile when I put the pywhatkit library inside Question: I have an application in flask and I tried to insert within that application a code to automatically send messages to whatssap. Code: import pywhatkit as pwk import time def whats(): tim = time.localtime() hour = int(time.strftime("%H", tim)) min = int(time.strftime("%M", tim)) …

Total answers: 1

Code python/selenium to send bulk whatsapp messages – continiously unable to locate element for text box

Code python/selenium to send bulk whatsapp messages – continiously unable to locate element for text box Question: Looked at many options and other codes. Everything in the code below runs smoothly, until the whatsapp input box is called up with: *input_box = driver.find_element_by_xpath(‘//*[@id="main"]/footer/div[1]/div[2]/div/div[2]’)* I have also adjusted it to: *input_box = driver.find_element(By.XPATH, ‘//*@id="main"]/footer/div[1]/div[2]/div/div[2]’)* without any …

Total answers: 3

Open Whatsapp Windows app directly from python program using url

Open Whatsapp Windows app directly from python program using url Question: According to this FAQ page of Whatsapp on How to link to WhatsApp from a different app Using the URL whatsapp://send?phone=XXXXXXXXXXXXX&text=Hello can be used to open the Whatsapp app on a Windows PC and perform a custom action. It does work when it is …

Total answers: 2

How to determine if whatsapp contact search find results with selenium python

How to determine if whatsapp contact search find results with selenium python Question: I want to send whatsapp using selenium python Im getting my contact numbers from a csv file So With a loop Im typing phone numbers in contact search box (WhatsApp web) (Because that some of my phone contact are duplicate so I’m …

Total answers: 2

Send whatsapp message to contacts using Python but getting an error: InvalidSelectorException: Message: invalid selector: Unable to locate an element

Send whatsapp message to contacts using Python but getting an error: InvalidSelectorException: Message: invalid selector: Unable to locate an element Question: I am trying to send whatsapp message to contacts using Python but getting an error: InvalidSelectorException: Message: invalid selector: Unable to locate an element with the xpath expression //span[@title = “Me Postpaid”]”} (Session info: …

Total answers: 2

WhatsApp API (java/python)

How can I use the WhatsApp API from Java or Python? Question: I am looking for WhatsApp API, preferably a Python or Java library. I’ve tried Yowsup, but could not get my number registered; I am based in India and I am not sure if that has got anything to do with it. I did …

Total answers: 3