|
6 years ago | |
---|---|---|
R | 6 years ago | |
man | 6 years ago | |
tests | 6 years ago | |
.Rbuildignore | 6 years ago | |
.codecov.yml | 6 years ago | |
.gitignore | 6 years ago | |
.travis.yml | 6 years ago | |
DESCRIPTION | 6 years ago | |
NAMESPACE | 6 years ago | |
NEWS.md | 6 years ago | |
README.Rmd | 6 years ago | |
README.md | 6 years ago | |
decapitated.Rproj | 6 years ago | |
output.pdf | 6 years ago | |
screenshot.png | 6 years ago |
README.md
decapitated
: Headless 'Chrome' Orchestration
The 'Chrome' browser https://www.google.com/chrome/ has a headless mode which can be instrumented programmatically. Tools are provided to perform headless 'Chrome' instrumentation on the command-line and will eventually provide support for the 'DevTools' instrumentation 'API' or the forthcoming 'phantomjs'-like higher-level 'API' being promised by the development team.
IMPORTANT
This pkg will eventually do much under the covers to find the location of the Chrome binary on all operating systems. For now, you'll need to set an envrionment variable HEADLESS_CHROME
to one of these two values:
- Windows:
C:\Program Files\Google\Chrome\Application\chrome.exe
- macOS:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome
Linux folks will know where their binary is (many of you use non-default locations for things).
Use ~/.Renviron
to store this value for the time being.
The following functions are implemented:
chrome_dump_pdf
: "Print" to PDFchrome_read_html
: Read a URL via headless Chrome and return the renderd ' ' 'innerHTML' DOM elementschrome_shot
: Capture a screenshotchrome_version
: Get Chrome version
Installation
devtools::install_github("hrbrmstr/decapitated")
Usage
library(decapitated)
# current verison
packageVersion("decapitated")
## [1] '0.1.0'
chrome_version()
chrome_read_html("http://httpbin.org/")
## {xml_document}
## <html>
## [1] <body id="manpage"></body>
chrome_dump_pdf("http://httpbin.org/")
## [0502/094321.911089:INFO:headless_shell.cc(436)] Written to file output.pdf.
chrome_shot("http://httpbin.org/")
## [0502/094257.370837:INFO:headless_shell.cc(436)] Written to file screenshot.png.
## format width height colorspace filesize
## 1 PNG 1600 1200 sRGB 238967
Test Results
library(decapitated)
library(testthat)
date()
## [1] "Tue May 2 09:45:23 2017"
test_dir("tests/")
## testthat results ========================================================================================================
## OK: 0 SKIPPED: 0 FAILED: 0
##
## DONE ===================================================================================================================