[RESOLVED] How can I grab text from gmail?
hello
I want to grab text from my gmail
I tried to use INET but I have to log in first and that is impossible with INET
So, I am using CreateObject and Navigate command
But I could not grab the text I need
Code:
Set ie = CreateObject("InternetExplorer.Application")
ie.navigate "www.gmail.com"
s = ie.document.body.innerText
the page is loaded ok because I logged in before in IE
Re: How can I grab text from gmail?
Ok
I found it
I just have to use InnerHtml instead of InnerText
Re: How can I grab text from gmail?
Please mark your thread resolved by either editing your first post and appending [Resolved] to the title or selecting "Mark thread resolved" from the "Thread tools" drop-down menu (javascript needs to be enabled in the browser to do this).