<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Web automation using Internet Explorer	</title>
	<atom:link href="https://simpleexcelvba.com/web-automation-using-internet-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/</link>
	<description>Make your office life easier with simple and fast Excel VBA solutions.</description>
	<lastBuildDate>Thu, 05 Dec 2024 08:07:32 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Tomasz Płociński		</title>
		<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26807</link>

		<dc:creator><![CDATA[Tomasz Płociński]]></dc:creator>
		<pubDate>Thu, 05 Dec 2024 08:07:32 +0000</pubDate>
		<guid isPermaLink="false">https://simpleexcelvba.com/?p=1192#comment-26807</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26800&quot;&gt;Dlyanda&lt;/a&gt;.

What do You mean by &#039;doesn&#039;t work for me&#039; - where is the error? :)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26800">Dlyanda</a>.</p>
<p>What do You mean by &#8216;doesn&#8217;t work for me&#8217; &#8211; where is the error? 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dlyanda		</title>
		<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26801</link>

		<dc:creator><![CDATA[Dlyanda]]></dc:creator>
		<pubDate>Fri, 11 Oct 2024 09:53:51 +0000</pubDate>
		<guid isPermaLink="false">https://simpleexcelvba.com/?p=1192#comment-26801</guid>

					<description><![CDATA[I was checking 1 more time and found that your code works on another site but doesn&#039;t work on our intranet site. I can&#039;t understand it]]></description>
			<content:encoded><![CDATA[<p>I was checking 1 more time and found that your code works on another site but doesn&#8217;t work on our intranet site. I can&#8217;t understand it</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dlyanda		</title>
		<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26800</link>

		<dc:creator><![CDATA[Dlyanda]]></dc:creator>
		<pubDate>Fri, 11 Oct 2024 06:50:24 +0000</pubDate>
		<guid isPermaLink="false">https://simpleexcelvba.com/?p=1192#comment-26800</guid>

					<description><![CDATA[Hello
I was trying to use your code and many other samples on the internet but it doesn&#039;t work for me
Sub automateIE()

 Dim IE As InternetExplorer
 Dim doc As HTMLDocument
 Dim URL As String

 Set IE = New InternetExplorer

 Let URL = &quot;http://192.168.1.151/base/index.php&quot;

 IE.Visible = True
 IE.navigate URL

 &#039;Do While IE.readyState  READYSTATE_COMPLETE Or IE.Busy: DoEvents: Loop

Do While IE.Busy
        Application.Wait DateAdd(&quot;s&quot;, 1, Now)
    Loop
    
 Set doc = IE.document ===ERROR
 doc.getElementsByName(&quot;login[name]&quot;).Item(0).Value = &quot;ACB_Purchase&quot;
 doc.getElementsByName(&quot;login[pass]&quot;).Item(0).Value = &quot;12345&quot;
&#039; doc.getElementsByClassName(&quot;search-submit&quot;).Item(0).Click

 End Sub]]></description>
			<content:encoded><![CDATA[<p>Hello<br />
I was trying to use your code and many other samples on the internet but it doesn&#8217;t work for me<br />
Sub automateIE()</p>
<p> Dim IE As InternetExplorer<br />
 Dim doc As HTMLDocument<br />
 Dim URL As String</p>
<p> Set IE = New InternetExplorer</p>
<p> Let URL = &#8220;http://192.168.1.151/base/index.php&#8221;</p>
<p> IE.Visible = True<br />
 IE.navigate URL</p>
<p> &#8216;Do While IE.readyState  READYSTATE_COMPLETE Or IE.Busy: DoEvents: Loop</p>
<p>Do While IE.Busy<br />
        Application.Wait DateAdd(&#8220;s&#8221;, 1, Now)<br />
    Loop</p>
<p> Set doc = IE.document ===ERROR<br />
 doc.getElementsByName(&#8220;login[name]&#8221;).Item(0).Value = &#8220;ACB_Purchase&#8221;<br />
 doc.getElementsByName(&#8220;login[pass]&#8221;).Item(0).Value = &#8220;12345&#8221;<br />
&#8216; doc.getElementsByClassName(&#8220;search-submit&#8221;).Item(0).Click</p>
<p> End Sub</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tomasz Płociński		</title>
		<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26781</link>

		<dc:creator><![CDATA[Tomasz Płociński]]></dc:creator>
		<pubDate>Wed, 06 Dec 2023 13:18:14 +0000</pubDate>
		<guid isPermaLink="false">https://simpleexcelvba.com/?p=1192#comment-26781</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26770&quot;&gt;Bhashmang&lt;/a&gt;.

Please follow the code from the article and give me a sign then :)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26770">Bhashmang</a>.</p>
<p>Please follow the code from the article and give me a sign then 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bhashmang		</title>
		<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-26770</link>

		<dc:creator><![CDATA[Bhashmang]]></dc:creator>
		<pubDate>Thu, 23 Nov 2023 02:50:37 +0000</pubDate>
		<guid isPermaLink="false">https://simpleexcelvba.com/?p=1192#comment-26770</guid>

					<description><![CDATA[Sir I am getting following error on execution of code:
Run-time error ‘-2147467259 (80004005)
Method ‘Document’ of object ‘IWebBrowser2’ failed

Code:
Dim ie as Object
Dim ht as HTMLDocument
Set ie= CreateObject(“InternetExplorer.Application”)
ie.visible= True
ie.navigate “‘any website name”
Do While ie.Busy
Application.Wait DateAdd(“s”,1,now)
Loop
Set ht=ie.document //error is coming on this line//
End sub

It would be great if you can help]]></description>
			<content:encoded><![CDATA[<p>Sir I am getting following error on execution of code:<br />
Run-time error ‘-2147467259 (80004005)<br />
Method ‘Document’ of object ‘IWebBrowser2’ failed</p>
<p>Code:<br />
Dim ie as Object<br />
Dim ht as HTMLDocument<br />
Set ie= CreateObject(“InternetExplorer.Application”)<br />
ie.visible= True<br />
ie.navigate “‘any website name”<br />
Do While ie.Busy<br />
Application.Wait DateAdd(“s”,1,now)<br />
Loop<br />
Set ht=ie.document //error is coming on this line//<br />
End sub</p>
<p>It would be great if you can help</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tomasz Płociński		</title>
		<link>https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-18503</link>

		<dc:creator><![CDATA[Tomasz Płociński]]></dc:creator>
		<pubDate>Tue, 22 Feb 2022 18:55:06 +0000</pubDate>
		<guid isPermaLink="false">https://simpleexcelvba.com/?p=1192#comment-18503</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-18434&quot;&gt;Nam&lt;/a&gt;.

Have You tried to inspect the website, where the dropdown is placed?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://simpleexcelvba.com/web-automation-using-internet-explorer/#comment-18434">Nam</a>.</p>
<p>Have You tried to inspect the website, where the dropdown is placed?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
