https://github.com/jmbowman/browser-automation-presentation
Presentation on some key points regarding web browser automation
https://github.com/jmbowman/browser-automation-presentation
Last synced: 3 months ago
JSON representation
Presentation on some key points regarding web browser automation
- Host: GitHub
- URL: https://github.com/jmbowman/browser-automation-presentation
- Owner: jmbowman
- License: cc-by-4.0
- Created: 2017-09-21T15:05:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T15:29:59.000Z (over 7 years ago)
- Last Synced: 2025-01-12T19:45:06.501Z (5 months ago)
- Language: Python
- Size: 75.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Overview
This was a presentation I gave twice at edX in 2017 on understanding some
key points in web browser automation. A PDF of the slides is present in the
root directory, read on if you're interested in the technical details of how
the presentation was made.## Installation and slide generation
To generate the HTML slides as they were presented:
* `git clone https://github.com/jmbowman/browser-automation-presentation.git`
* Install [virtualenv](https://virtualenv.pypa.io/en/stable/), if you haven't
already done so
* Create and activate a virtualenv (for example, `virtualenv env` followed by
`. env/bin/activate`)
* `pip install -r requirements.txt`
* `make html`## Implementation notes
The presentation was written as a single reStructuredText file (`index.rst`).
This was converted to a [reveal.js](https://github.com/hakimel/reveal.js/)
HTML presentation via [Sphinx](http://www.sphinx-doc.org/en/stable/) using the
[sphinxjp.themes.revealjs](https://github.com/tell-k/sphinxjp.themes.revealjs)
extension. The flowcharts in the presentation were defined inline using the
[sphinxcontrib-blockdiag](http://blockdiag.com/en/blockdiag/sphinxcontrib.html)
extension.The PDF was saved from the HTML presentation via Chrome using the reveal.js
[print stylesheet](https://github.com/hakimel/reveal.js#pdf-export).## License
The presentation is made available under the terms of the Creative Commons
[Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/)
license.