-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiline Textmessage #42
Comments
I am having the same issue here |
I have the same issue, I tried many times using different characters and there is no way. |
hello, we found this workaround from someone's answer in StackOverflow thread and we can use it sucessfully. the idea is to split NewLines in message and simulate SHIFT+ENTER to browser. for msg in message.split("\n"):
input_box.send_keys(msg)
ActionChains(self.browser).key_down(Keys.SHIFT).key_down(Keys.ENTER).key_up(Keys.ENTER).key_up(Keys.SHIFT).perform()
input_box.send_keys(Keys.ENTER) |
Hi @adesr, This is cool, can you submit a pull request so we can this to the main distribution Thank you |
from alright import WhatsApp chrome_options = Options() messenger = WhatsApp() |
Is it possible to send multiline textmessages with whatsapp without all of them being a separate text-message
The text was updated successfully, but these errors were encountered: