hound v1.1.1 Hound.Helpers.SavePage View Source
Provides helper function to save the current page
Link to this section Summary
Functions
Save the dom of the current page. The page is saved in the current working directory. It returns the path of the html file, to which the dom has been saved
Link to this section Functions
Link to this function
save_page(path \\ default_path()) View Source
Save the dom of the current page. The page is saved in the current working directory. It returns the path of the html file, to which the dom has been saved.
For Elixir mix projects, the saved screenshot can be found in the root of the project directory.
save_page()
You can also pass a file path to which the screenshot must be saved to.
# Pass a full file path
save_page("/media/pages/test.html")
# Or you can also pass a path relative to the current directory. save_page("page.html")