Skip to main content

A Python library to automate easily whatsapp web

Project description

Simon, a Python Library for WhatsApp Web Automation

Browser automation for WhatsApp Web service with Python & Selenium.

Project consists to allow a user, with whatsapp installed in their phone, to connect their phone with whatsapp web service https://web.whatsapp.com and to automate the functionalities a user normally performs when using whatsapp as a chat app.

Some functionalities:

  1. Reading messages
  2. Sending messages
  3. Detecting new messages' notifications.
  4. Replying to a specific (making a reference to the message you are replying to) message




Index:

  • Objectives

    • Main Goal & User Story
      • A) detecting new messages
      • B) reading new message(s)
      • C) replying a message
      • D) send a message
  • Code Examples

    • Login into whatsapp web, check you are logged in & logout
    • Get all opened chats, go into the chat, read the last 10 messages from your friend and reply to the most recent message
    • More examples
  • Information

  • Maintainer




Objectives

Main Goal & User Story

Simon can detect new message(s), read them, analyse it and reply if needed.

A) detecting new messages

  1. get simon_opened_chats
  2. inspect available user from top-bottom for notifications (only on available browser screen view)
  3. click on the opened chat found with a new message notification icon

B) reading new message(s)

  1. get contact_chat
  2. find "n unread messages" section
  3. get first unread msg
  4. read and analyse msg

C) replying a message

  1. get(hover) the reply icon (on the right-side of the message)
  2. click on the reply icon
  3. get the reply link("Reply")
  4. click the reply link (on browser: it puts cursor on the contact_send_message[message_field])

D) send a message

  1. get contact_send_message
  2. write message
  3. press enter to send msg.

Code Examples

For the library we are using the Page Pattern recommended by the selenium python library.

Login into whatsapp web, check you are logged in & logout

import time

from selenium import webdriver

from simon.accounts.pages import LoginPage
from simon.header.pages import HeaderPage
from simon.pages import BasePage

# Creating the driver (browser)
driver = webdriver.Firefox()
driver.maximize_window()

# 1. Login
#       and uncheck the remember check box
#       (Get your phone ready to read the QR code)
login_page = LoginPage(driver)
login_page.load()
login_page.remember_me = False
time.sleep(7)


# 2. The base page is inherited by all pages
#       and here you can check whether any
#       page is available on the screen of
#       the browser.

# we don't need to load the pages as whatsapp
# web works as one-page web app
base_page = BasePage(driver)
base_page.is_title_matches()
base_page.is_welcome_page_available()
base_page.is_nav_bar_page_available()
base_page.is_search_page_available()
base_page.is_pane_page_available()
# chat is only available after you open one
base_page.is_chat_page_available()


# 3. Logout
header_page = HeaderPage(driver)
header_page.logout()

# Close the browser
driver.quit()

Get all opened chats, go into the chat, read the last 10 messages from your friend and reply to the most recent message

import time

from selenium import webdriver

from simon.accounts.pages import LoginPage
from simon.chat.pages import ChatPage
from simon.chats.pages import PanePage
from simon.header.pages import HeaderPage


# Creating the driver (browser)
driver = webdriver.Firefox()
driver.maximize_window()

# Login
#       and uncheck the remember check box
#       (Get your phone ready to read the QR code)
login_page = LoginPage(driver)
login_page.load()
time.sleep(7)


# 1. Get all opened chats
#       opened chats are the one chats or conversations
#       you already have in your whatsapp.
#       IT WONT work if you are looking for a contact
#       you have never started a conversation.
pane_page = PanePage(driver)

# get all chats
opened_chats = pane_page.opened_chats

# iterating over them
for oc in opened_chats:
    print(oc.name)  # contact name (as appears on your whatsapp)
    print(oc.icon)  # the url of the image
    print(oc.last_message)
    print(oc.last_message_time)  # datetime object
    print(oc.has_notifications())  # are there unread messages?
    print(oc.notifications)  # returns a integer with the qty of new messages, if there are.


# 2. Go into the chat
#       just click on one to open the chat page
#       (where the conversation is happening)
first_chat = opened_chats[0]
first_chat.click()

# 3. Read the last 10 messages from your contact
chat_page = ChatPage(driver)
msgs = chat_page.messages.newest(10, filterby='contact')

for msg in msgs:
    print(msg.contact) # name (all should be the same)
    print(msg.date)
    print(msg.text)
    print(msg.status)


# 4. Reply to the most recent message
msg = msgs[0]  # get the first of the messages query done in previous step
msg = chat_page.messages.newest(filterby='contact')
# Be careful as library can only now reply to text message
# Replying to a msg type (video, image, giff, etc) is not implemented yet. 
msg.reply("This a reply to a specific text msg.")


# Logout
header_page = HeaderPage(driver)
header_page.logout()

# Close the browser
driver.quit()

More examples

For more functionalities that is offered by the library please check the tests. Here a couple:

Note: If you will try to run the test yourself locally, some of them won't work as some tests are done offline with some html templates that are not available in the repo


Information:

Technology Stack
Python language Language
Selenium selenium Browser Automation
Whatsapp Web whatsapp Chat Service



Maintainer

Get in touch -–> fantaso

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whatsapp-web-0.0.1.tar.gz (19.1 kB view details)

Uploaded Source

Built Distribution

whatsapp_web-0.0.1-py3-none-any.whl (21.8 kB view details)

Uploaded Python 3

File details

Details for the file whatsapp-web-0.0.1.tar.gz.

File metadata

  • Download URL: whatsapp-web-0.0.1.tar.gz
  • Upload date:
  • Size: 19.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for whatsapp-web-0.0.1.tar.gz
Algorithm Hash digest
SHA256 36b22656de4526a73c3ec24a51828df3f4092d9a6fe50db1b8209c8634950a72
MD5 9a7d49f731d23494d74a882a64e00292
BLAKE2b-256 77ded5ec2e3d6fa4aa91147aae803e3c7d01ea87047201f78a71b9b2e8fe14a2

See more details on using hashes here.

File details

Details for the file whatsapp_web-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: whatsapp_web-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 21.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.8.0

File hashes

Hashes for whatsapp_web-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c17abb6563a8aa5a28fd37fcef4bc0a3c46618c7265d186cc40352474466f72e
MD5 d53f75481c4d863c8ddeaeb73dc94a6d
BLAKE2b-256 6236decdcc9b89a9f1a82fe3368d1306d0c4b0ecbd66a326b06ff8f983dd5cf1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page