selenium like ansible
Project description
selenible
do selenium like ansible
# open google and take screenshot
- name: open url
open: https://www.google.com
- name: screenshot
screenshot: output.png
requirements
- python3
- selenium webdriver
- phantomjs
- chrome
- firefox
- etc...
install
- pip install selenible
usage
# selenible
Usage: selenible [OPTIONS] COMMAND [ARGS]...
Options:
--version Show the version and exit.
--verbose
--quiet
--logfile PATH
--help Show this message and exit.
Commands:
browser-options show browser options
dump-schema dump json schema
list-modules list modules
run run playbook
validate validate by json schema
# selenible list-modules
+------------------+-----------------------------------------------------------+
| Module | Description |
+==================+===========================================================+
| alertOK | - name: accept alert |
| | alertOK: true |
| | - name: cancel alert |
| | alertOK: false |
+------------------+-----------------------------------------------------------+
| auth | - name: basic/digest auth |
| | auth: |
:
# selenible run --help
Usage: selenible run [OPTIONS] [INPUT]
run playbook
Options:
--driver [phantom|chrome|firefox|safari|edge|webkit|dummy|ie|opera|android|remote]
-x, --extension TEXT
--step
--screenshot
-e TEXT
--var FILENAME
--help Show this message and exit.
development
- git clone https://github.com/wtnb75/selenible.git
- cd selenible
- pip install -r requirements.txt
# python -m selenible.cli
Usage: cli.py [OPTIONS] COMMAND [ARGS]...
:
# python -m selenible.cli list-modules
+--------------+---------------------------------------------------------------+
| Module | Description |
+==============+===============================================================+
| alertOK | - name: accept alert |
| | alertOK: true |
| | - name: cancel alert |
:
install HEAD
- pip install -e 'git+https://github.com/wtnb75/selenible.git#egg=selenible'
- selenible --help
- ...
(uninstall)
- pip uninstall selenible -y
examples
# input text into translate service and get new text
- name: get text
set:
input_multiline: "input(ctrl-d): "
register: src
when_not:
defined: src
- name: open google translate
open: https://translate.google.com/
- name: set input
setTextValue:
text: "{{src}}"
id: source
- name: sleep
sleep: 3
- name: get output
save:
mode: text
id: result_box
register: dst
- name: result
echo: "{{dst}}"
and more examples...
work with jupyter notebook
install kernel
- jupyter kernelspec install --user seleniblepiter
examples
Links
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
selenible-0.0.4-py3-none-any.whl
(32.7 kB
view details)
File details
Details for the file selenible-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: selenible-0.0.4-py3-none-any.whl
- Upload date:
- Size: 32.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.40.2 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef04d905269507e541a9bfc313a30751c47128701520ed0622f15440ec26d33b |
|
MD5 | bb0156a68e785d6bbcfb70690a0a9982 |
|
BLAKE2b-256 | 665645939021bed63680d12f490b3ad76c0989bd77fa6514c916a16c1bcf4f2f |