View Single Post
  #3 (permalink)  
Old April 17th, 2009, 01:31 AM
Inforequester Inforequester is offline
Registered User
 
Join Date: Apr 2009
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Question QUICK QUESTION !!!!!

I'm trying to automate posting to craigslist with my ad that I normally have to post manually (which is a pain in the bottom!). My issue is that I can't get to the text boxes to fill them out in Craigslist since the "{Tab}" is skipping some of the fields. So I used the following code below:

Set IE = CreateObject("InternetExplorer.Application")
IE.Navigate "https://post.craigslist.org/ahn/S/msg/none/x"
IE.Visible = True
Wscript.Sleep 4000
Document.All.Item("?").Value = "Whatever Message You Want"
IE.Document.All.Item("?").Click

Can someone please fill in the "?" to help answer the question & make the cursor land in the boxes?

Here's the Craigslist page that I'm trying to automate:

https://post.craigslist.org/atl/S/msg/none/x
Reply With Quote