Introduction
Clicknium Python package provides methods to automate various types of applications in Windows, such as Web browsers, Windows Desktop applications, Java applications and SAP Windows GUI app, etc.
- No need to learn XPath or selector knowledge in advance;
- Capture UI locators by just clicking UI controls with VS Code extension;
- Same API for web and desktop applications;
Install Clicknium Visual Studio Code Extension to start automation with Clicknium Python package now.
Examples
- Web browser Automation. visit Quick start and learn how to capture locators in Visual Studio Code.
from clicknium import clicknium as cc, locator, ui
tab = cc.edge.open("https://www.bing.com/")
tab.find_element(locator.new_store.bing.search_sb_form_q).set_text('clicknium')
tab.find_element(locator.new_store.bing.svg).click()
result_elements = tab.find_elements(locator.new_store.bing.a_search_result)
for elem in result_elements:
print(elem.get_text())
elem.highlight(duration=1)
tab.close()
- Automate 'notepad' on Windows using the same way with web browser:
from clicknium import clicknium as cc, locator, ui
import subprocess
process = subprocess.Popen("notepad")
ui(locator.new_store.notepad.document_15).set_text("clicknium")
ui(locator.new_store.notepad.document_15).clear_text('set-text')
process.kill()
More
- Documentation : Learn everything about Clicknium
- API Reference : Learn the Python APIs
- Explore more in Clicknium.com
- More samples in GitHub
Contact
Email: clicknium@clicknium.com
Release files for clicknium 0.2.12
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Built distributions (wheels)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| clicknium-0.2.12-py3-none-win_amd64.whl | Python 3 | none | Windows x86-64 | Details |
| clicknium-0.2.12-py3-none-win32.whl | Python 3 | none | Windows x86-32 | Details |
Total release size: 70.3 MB
Release files / clicknium-0.2.12-py3-none-win_amd64.whl
| Download URL | clicknium-0.2.12-py3-none-win_amd64.whl |
|---|---|
| Size | 39.5 MB |
| Tags | Python 3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
c26747e9f96d8e089d2f594ffec5893c0bbe05c297f96b62636bbe90eb1706e8
|
|
BLAKE2b-256 checksum How to use checksums |
65f9abe928f26ce6a6e3071dfd0331f0b79d975d91eff033d0389faf4ecc6147
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.5
|
Release files / clicknium-0.2.12-py3-none-win32.whl
| Download URL | clicknium-0.2.12-py3-none-win32.whl |
|---|---|
| Size | 30.8 MB |
| Tags | Python 3 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1c64c1ccd5785493fd95b6755cca81b9ac2e7a3ebb7baebc6f458ad47b345590
|
|
BLAKE2b-256 checksum How to use checksums |
ac4d38942b278b64723e455374d97f35f7c05015e8d4efa0a29f338271072da3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.5
|