We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When passing these parameters:
-u https://frankmtaylor.com/sitemap.xml -s h1 -e -c
Images are not created.
In the frankmtaylor.com.sitemap.json file, the urls are all http:
{ "loc": "http://frankmtaylor.com/401.html" }, { "loc": "http://frankmtaylor.com/403.html" }, { "loc": "http://frankmtaylor.com/500.html" },
If these urls are set to https, then screengrabs are produced.
in selector-finder.js, the filename is created with a simple replace, and it assumes https:
selector-finder/src/selector-finder.js
Line 52 in c342e01
Change that to
.replace(/http(s?)(:\/\/)/, '')
and that should cover both cases.
The text was updated successfully, but these errors were encountered:
this is merged into develop
Sorry, something went wrong.
This was resolved in release 2.2
paceaux
No branches or pull requests
When passing these parameters:
Images are not created.
In the frankmtaylor.com.sitemap.json file, the urls are all http:
If these urls are set to https, then screengrabs are produced.
Solution
in selector-finder.js, the filename is created with a simple replace, and it assumes https:
selector-finder/src/selector-finder.js
Line 52 in c342e01
Change that to
and that should cover both cases.
The text was updated successfully, but these errors were encountered: