Tagged Questions
2
votes
2answers
101 views
Print like Firefox
Made a CLI script to print Wikipedia articles:
WIKI='https://en.wikipedia.org/w/index.php?title='
TITLE=$1
PRINTABLE='&printable=yes'
SRC=$WIKI$TITLE$PRINTABLE
HTML=$1".html"
PS=$1".ps"
wget ...
6
votes
2answers
215 views
Are there any good tools besides SeleniumRC that can fetch webpages including content post-painted by JavaScript?
One major shortcoming of curl is that more and more wepages are having their main piece of content painted by a JavaScript AJAX response that occurs after the initial HTTP response. curl never picks ...
