It is a sample of using Python code to control the Telegram client and send messages to contacts and the Telegram channel.
-
Log in to your Telegram client.
-
Capture the search bar
The validation would be failed. The most simple way to debug this issue, we can use a new feature provided by Clicknium:
Recapture & Compare
After recapturing the search bar, we can get the compared model to check the difference between the old and new.
It's easy to get the difference between the old and new is the
name
attribute. There is a number that follows the word "Telegram." We can use the wildcard to fix it by changing the number383784
to*
and saving the locator. Validate again, and it will succeed. -
Set text into the search bar
- Include the Clicknium package into your Python code and set the contacts name into the search bar using Clicknium API.
from clicknium import clicknium as cc, locator
cc.find_element(locator.telegram.contact_search).set_text("DK H")
- Select the contacts by pressing the
Enter
key. More codes of the key can be found at the page
cc.send_hotkey("{ENTER}")
- Capture the message text input and send messages button using the same way as step 3.
- Code the workflow into Python. You can check the sample in the sample.py file.