원래 <1번>으로 프로그램을 만들었는데 세션때문에 <2번>으로 바꾸었습니다.
<1번>처럼 구글페이지 소스에서 "google이라는 문자열을 찾고 싶은데 명령어를 모르겠네요.
<2번>에서 어떻게 해야 <1번>처럼 구현이 될까요?
답변좀 부탁드립니다.
<1번>
objExplorer:= ComObjCreate("InternetExplorer.Application")
objExplorer.Visible := true
objExplorer.Navigate("http://google.com")
Str := objExplorer.document.documentElement.InnerHTML
IfInString, Str, google
{
objExplorer.Navigate("http://naver.com")
}
----------------------------------------------------------------------------------------------------
<2번>
shell := ComObjCreate("WScript.Shell")
objExplorer := shell.Exec("C:\Program Files\Internet Explorer\iexplore.exe -nomerge http://google.com")
IfInString, Str, google - str변수에서 google을 찾는 명령어에요