|
-
Oct 2nd, 2009, 03:17 AM
#20
Re: Web browser ?
How do I tell the program form example to press the login button on that page? Isi't like Press ("Login") ???
if it is input submit button, you can just submit the form, as my example
most times submit buttons do not have names or ids, so the only way is to loop through the elements to find some property to match then click the element
when you navigate 2 hotmail the site must redirect, after the browser readystate ha been reached, so the next page has not loaded when your code runs (guessing here)
vb Code:
Set wb = CreateObject("internetexplorer.application") wb.Navigate2 "www.gpro.se" wb.Visible = True Do Until wb.readystate = 4 DoEvents Loop Set ele = wb.document.forms("form1") ele.all("textpassword").Value = "pass" ele.submit
on this site the button does have a name and id, but it is not common for input buttons to have name
i do my best to test code works before i post it, but sometimes am unable to do so for some reason, and usually say so if this is the case.
Note code snippets posted are just that and do not include error handling that is required in real world applications, but avoid On Error Resume Next
dim all variables as required as often i have done so elsewhere in my code but only posted the relevant part
come back and mark your original post as resolved if your problem is fixed
pete
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|