Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The login form page is where the site redirects you when you are not authenticated. If you executed the curl command from above, it will most likely be the URL specified in the "Location" response Header.

  2. The login form html structure is the path for where to find the html form that Aspider needs (in order to fill and send) to authenticate.
    1. For example, if your login form page consists of the following HTML, then your path would be /html/body/div/form
       
Code Block
languagexml
html>
<head>....</head>
<body>
    <div ....>
    <form method="post" action="...." ...
       ...
    </form>
    </div>
</body>
</html>

b. Also identify the id attribute of the user and password input elements.

...