+ Reply to Thread
Results 1 to 4 of 4

How to use tab down on internet explorer?

Hybrid View

allepavankumar How to use tab down on... 07-24-2012, 03:18 AM
Cutter Re: How to use tab down on... 07-24-2012, 10:28 AM
allepavankumar Re: How to use tab down on... 07-25-2012, 03:11 AM
allepavankumar Re: How to use tab down on... 07-25-2012, 03:12 AM
  1. #1
    Registered User
    Join Date
    12-27-2010
    Location
    India
    MS-Off Ver
    Excel 2013
    Posts
    3

    How to use tab down on internet explorer?

    Hi all,
    I have a serious problem that i am not able to find a solution. I developing a macro that punch the data in internet explorer based on excel sheet. I am able to navigate to the URL, the one which i am not able to do is when i am punching data on internet explorer, i am not able to tab down through the cells in a table (here is the attached screen print)
    Untitled.png
    Please find the code below
    Sub test()
    Set ie = CreateObject("internetexplorer.application")
    ie.Visible = True
    ie.navigate "URL"
    Do
    DoEvents
    Loop Until ie.readystate = readystate_complete
    Application.Wait Now + TimeSerial(0, 0, 10)
    ie.document.getElementById("ctl00_contentArea_txtEmailAddressForLogin").Value = "xxxx"
    SendKeys "%{TAB}"
    ie.document.getElementById("ctl00_contentArea_txtPassword").Value = "yyyy"
    ie.document.all("ctl00_contentArea_butLogin").Click
    Do
    DoEvents
    Loop Until ie.readystate = readystate_complete
    Application.Wait Now + TimeSerial(0, 0, 10)
    ie.navigate "https://secure.mercent.com/channels_categoryCPCManager.aspx"
    Do
    DoEvents
    Loop Until ie.readystate = readystate_complete
    Application.Wait Now + TimeSerial(0, 0, 10)
    ie.document.getElementById("ctl00_contentArea_drpChannels").Value = "Pronto"
    ie.document.getElementById("ctl00_contentArea_drpChannels").onchange
    Do
    DoEvents
    Loop Until ie.readystate = readystate_complete
    Application.Wait Now + TimeSerial(0, 0, 10)
    ie.document.getElementById("ctl00_contentArea_txtKeywordFilter").Value = "Clothing & Accessories"
    ie.document.all("mainButtonLink_ctl00_contentArea_btnKeywordSearch").Click
    Do
    DoEvents
    Loop Until ie.readystate = readystate_complete
    Application.Wait Now + TimeSerial(0, 0, 10)
    lout = ie.document.DocumentElement.innerHTML
    If InStr(1, lout, " categories were found.", 1) Then
    wb = lout
    End If
    elTableCells = ie.document.getElementsByTagName("td")
    Debug.Print elTableCells.innerHTML
    ie.document.getElementById("ctl00_contentArea_drpRecordsPerPage").Value = 100
    ie.document.getElementById("ctl00_contentArea_drpRecordsPerPage").onchange
    Do
    DoEvents
    Loop Until ie.readystate = readystate_complete
    Application.Wait Now + TimeSerial(0, 0, 10)
    sResult = ie.document.body.innertext
    priv = InStr(1, sResult, "Other")
    sfinal = Mid(sResult, priv + 10, 3)
    ie.document.getElementById("ctl00_contentArea_repCPCValues_ctl01_level0_ctrl0").Value = "0.01"----This is the line to punch the data, but it is punching only in one cell it is not looping though the all the cells on internet explorer.
    Loop
    End Sub
    Pleaseeee help me....
    Last edited by Cutter; 07-24-2012 at 10:26 AM. Reason: Added code tags

  2. #2
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451

    Re: How to use tab down on internet explorer?

    @ allepavankumar

    Please notice that code tags have been added to your post. The forum rules (Rule #3) require them so please keep that in mind and add them yourself whenever showing code in any of your future posts. Click on Forum Rules button @ top of page and see instructions in rule #3.
    Thanks.

  3. #3
    Registered User
    Join Date
    12-27-2010
    Location
    India
    MS-Off Ver
    Excel 2013
    Posts
    3

    Re: How to use tab down on internet explorer?

    ok i will take care of this next time.

    Can anybody please help me solve this problem plsss

  4. #4
    Registered User
    Join Date
    12-27-2010
    Location
    India
    MS-Off Ver
    Excel 2013
    Posts
    3

    Re: How to use tab down on internet explorer?

    ok i will take care of this next time.

    Can anybody please help me solve this problem plsss

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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