https://github.com/poetic/auto-selenium
Add automated browser ui tests that a non developer can generate using point and click browser extensions.
https://github.com/poetic/auto-selenium
browser-automation continuous-integration docker docker-compose docker-image selenium
Last synced: 2 months ago
JSON representation
Add automated browser ui tests that a non developer can generate using point and click browser extensions.
- Host: GitHub
- URL: https://github.com/poetic/auto-selenium
- Owner: poetic
- License: mit
- Created: 2018-05-02T03:00:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-04T20:42:37.000Z (almost 8 years ago)
- Last Synced: 2025-03-18T10:46:45.963Z (over 1 year ago)
- Topics: browser-automation, continuous-integration, docker, docker-compose, docker-image, selenium
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# astrocyte
## Setup
`brew install python pipenv`
Create the virtualenv
`virtualenv ~/.venv/astrocyte`
Activate the virtualenv
`source ~/.venv/astrocyte/bin/activate`
Install project dependencies
`pipenv install`
### Ansible Vault
Create a password file
```
mkdir ~/.ansible ; \
echo "changeme2018" >> ~/.ansible/.vault_pass.txt && \
chmod 0444 ~/.ansible/.vault_pass.txt
```
To generate the secret file, run `ansible-vault create vars/secret` from the project root.
The first prompt will create your vault password.
The second prompt will send you to a vim session, in that vim sesson input or copy vault.example.yml from the vars folder
```
ansible_sudo_pass: your-sudo-password
```
Using nano and a password file this is nice in dev and maybe bad practice in prod.
```
export EDITOR=nano && \
export VAULT_PASSFILE=~/.ansible/.vault_pass.txt && \
ansible-vault create --vault-password-file $VAULT_PASSFILE vars/vault.yml
```
Editing the vault file
```
export EDITOR=nano && \
export VAULT_PASSFILE=~/.ansible/.vault_pass.txt && \
ansible-vault edit --vault-password-file $VAULT_PASSFILE vars/vault.yml
```
```
ansible-playbook -i hosts init.yml --vault-password-file ~/.ansible/.vault_pass.txt
```
### Naming
leviathian
earthdiver
ocean