asinoastuto1
New Member
- Joined
- Dec 4, 2013
- Messages
- 5
All:
First and foremost I just want to say how vital this website is as a tool for someone who is trying to learn without a formal programming education. I have been lurking on this site for months now and in that time I have learned enough to actually start writing my own codes. After reading up on a lot of forums about this given issue, I have resorted to finally posting for myself.
Now comes the part I need help with.
Scenario:
I need to login to a website so that I could automatically pull a file which is updated every hour or so. (Only need help on the actual login process)
Some catches:
1) There are no ID's on any of the text boxes or buttons which I need to access
2) This is a secure (https://) website that only computers from my network can access.
Pertinent Information:
Link (wont help much)
Below is a screen shot of the website.
Above is the HTML of the given website(not the whole HTML just the relevant lines). The login box is named "remote" and the password box is named "password". In order to login I do not need to input anything into the "server" box. Also, it seems as if the text boxes are located on "form1".
So can anyone give me some assistance or point me in the right direction? I know this will be difficult as no one can test it besides me (given that I am the only one who can access the website), but any help will be greatly appreciated.
First and foremost I just want to say how vital this website is as a tool for someone who is trying to learn without a formal programming education. I have been lurking on this site for months now and in that time I have learned enough to actually start writing my own codes. After reading up on a lot of forums about this given issue, I have resorted to finally posting for myself.
Now comes the part I need help with.
Scenario:
I need to login to a website so that I could automatically pull a file which is updated every hour or so. (Only need help on the actual login process)
Some catches:
1) There are no ID's on any of the text boxes or buttons which I need to access
2) This is a secure (https://) website that only computers from my network can access.
Pertinent Information:
Link (wont help much)
HTML:
https://clientxfer.adp-ics.com/cehttp/html/main.htm
Below is a screen shot of the website.
HTML:
<form name="form1" method="post" action="/cehttp/servlet/MailboxServlet"> <INPUT TYPE="HIDDEN" NAME="operation" VALUE="LOGON"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" valign="top" class="copy"> <p class="copy990000"><strong>To logon to Connect:Enterprise base, fill in the fields below and click Logon</strong></p> <table border=0 cellpadding=0 cellspacing=5> <tr valign="middle"> <td class="copySmall" nowrap height="30" align="right"><b> User ID </b></td> <td class="copySmall" nowrap height="30"> <input type="TEXT" name="remote" size="24" maxlength="64" class="copySmall"> </td> </tr> <tr valign="middle"> <td class="copySmall" nowrap height="30" align="right"><b> Password </b></td> <td class="copySmall" nowrap height="30"> <input type="PASSWORD" name="password" size="24" maxlength="16" class="copySmall"> </td>
Above is the HTML of the given website(not the whole HTML just the relevant lines). The login box is named "remote" and the password box is named "password". In order to login I do not need to input anything into the "server" box. Also, it seems as if the text boxes are located on "form1".
So can anyone give me some assistance or point me in the right direction? I know this will be difficult as no one can test it besides me (given that I am the only one who can access the website), but any help will be greatly appreciated.
Last edited: