im making a friend adder for teenspot and this is what i have. basically you click a button and it adds the person selected on the list, then you have to click it again to add the next one. the thing is i need to know how to loops this so it just keeps moving down the list adding people automatically
WebBrowser1.Navigate("www.teenspot.com/profiles/" & ListBox.SelectedItem & "/add")
ListBox.SelectedIndex = ListBox.SelectedIndex + 2
' This is the "sleep" function.
' This makes your webbrowser finish loading before new action.
Do Until WebBrowser1.ReadyState = WebBrowserReadyState.Complete And WebBrowser1.IsBusy = False
Application.DoEvents()
Loop
WebBrowser1.Document.GetElementById("confirm").InvokeMember("click")
ive tried multiple times with do...loop and for..next and all that kinda stuff, but i still havent figured it out. what it does is, it only runs through the add me pages and never clicks confirm which is the second part. im kinda new to vb so if someone can i help id really appreciate it