+ Reply to Thread
Results 1 to 8 of 8

VBA to click on 'Continue' button on webpage

Hybrid View

  1. #1
    Registered User
    Join Date
    03-31-2013
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    57

    Re: VBA to click on 'Continue' button on webpage

    Sub submitFeedback3()
    Dim itm As Variant
        Application.ScreenUpdating = False
    
        Set IE = CreateObject("InternetExplorer.Application")
        
        IE.Visible = True
        IE.Navigate 'the url link is http://www.heiinfo.slc.co.uk/hei-services/bursaries-service.aspx followed by clicking on hyperlink HE Services Portal
         
        While IE.Busy
            DoEvents
        Wend
        
        delay 5
        IE.Document.getElementsbyname("ssousername")(0).Value = "JOEBLOGGS"
    
    'THIS IS WHERE i NEED TO CLICK THE CONTINUE BUTTON
    
    Private Sub delay(seconds As Long)
        Dim endTime As Date
        endTime = DateAdd("s", seconds, Now())
        Do While Now() < endTime
            DoEvents
        Loop
    End Sub
    Last edited by Jimbo77; 03-20-2014 at 04:32 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Click of button in userform to continue started macro
    By Mimoa in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-24-2016, 09:16 AM
  2. Paste Data into Webpage and click Button
    By Gannon2145 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-13-2015, 07:33 AM
  3. msg box that lets you click okay and continue if statement?
    By joshnathan in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-20-2013, 08:55 AM
  4. click webpage button problem
    By ckjason in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-01-2013, 03:56 AM
  5. Click ok to continue
    By tkuia in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-13-2010, 03:44 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1