Elixpose (elixpose v0.1.0) View Source
Elixpose
helps you to scrap web pages.
It shows you a lot of information about the page.
Link to this section Summary
Functions
Count the CSS referenced
Count the amount of Forms in the HTML
Count the HTML Elements
Count the JS referenced
Count the HTML Elements
Count the OnClick events
Get the text content from <style> Html Tag
Return information about the form tag
Get the text content from <script> Html Tag
Get the JSON with the amount of elements
Returns the OnClick values
Returns the page size in kb
Check if some JS file has an Ajax call
Link to this section Functions
Count the CSS referenced
## Examples
iex> Elixpose.count_css("https://pt.stackoverflow.com/")
3
Count the amount of Forms in the HTML
## Examples
iex> Elixpose.count_forms("https://pt.stackoverflow.com/")
1
Count the HTML Elements
## Examples
iex> Elixpose.count_html_elements("https://pt.stackoverflow.com/")
1
Count the JS referenced
## Examples
iex> Elixpose.count_js("https://pt.stackoverflow.com/")
19
Count the HTML Elements
## Examples
iex> Elixpose.count_meta_tags("https://pt.stackoverflow.com/")
12
Count the OnClick events
## Examples
iex> Elixpose.count_onclick_events("https://pt.stackoverflow.com/")
15
Get the text content from <style> Html Tag
Return information about the form tag
Get the text content from <script> Html Tag
Get the JSON with the amount of elements
Specs
Returns the OnClick values
Returns the page size in kb
## Examples
iex> Elixpose.get_page_size("https://pt.stackoverflow.com/")
101
Check if some JS file has an Ajax call
## Examples
iex> Elixpose.has_ajax_call?("https://pt.stackoverflow.com/")
true