下記の質問をいただきました。
JRAのホームページをボタンを押しながら画面を切り替えていこうとおもい、
次のken3の方法で実行しましたが、Title名がどのページも同じで、うまく切り替わってくれません。
そこで、「****」以下の方法でbodyから一意の文字列検索をしようとしましたが
「strTemp = objWindow.document.body.innertext」部分でエラーとなります。
各ページのTitle名が同じ場合の画面の切り替えについて、教えてください。''-------------------------------------------
'TypeNameでオブジェクト変数のタイプを表示する
Debug.Print "タイプは:" & TypeName(objWindow.document)
'HTMLDocumentだったら
' If TypeName(objWindow.document) = "HTMLDocument" Then
'URLとタイトルを表示する
' Debug.Print "タイトル:" & objWindow.Document.Title
' Debug.Print "URL:" & objWindow.Document.Url
' If objWindow.Document.Url = "https://mobile.rakuten-sec.co.jp/login.do" Then '指定したURLか?
' If objWindow.document.Title = "JRAホームページ" Then '指定したURLか?
''-----------------------------------------------
'*************************************************'シェルのオブジェクトを作成する
Set objShell = CreateObject("Shell.Application")
'ウインドウの数だけまわすぞ
For Each objWindow In objShell.Windows
strTemp = ""
strTemp = objWindow.document.body.innertext
' strTemp = objWindow.document.getElementsByTagName("div").innertext
If InStr(strTemp, "開催のボタン") > 0 Then 'HTML文字列の中から見つけたら
Set objIE = objWindow '代入する
Exit For '見つけたのでループを抜けるEnd If
Next
Set objShell = Nothing
上記質問に対して、
エラーの原因はよくわからないので、なんとも言えませんが、
私の過去記事
ken3memo.hatenablog.com
ken3memo.hatenablog.com
ken3memo.hatenablog.com
を見ると、
'HTMLDocumentだったら ' If TypeName(objWindow.document) = "HTMLDocument" Then
のコメントで未処理の部分
HTMLDocument
かチェックをしていないと、
IE以外のファイルエクスプローラなどが見つかると
strTemp = objWindow.document.body.innertext
で
.document.body. なんてないよ・・・とエラーが発生 怒られるかもしれません
と
勝手な予想です。
原因を勝手に決めつけたので、
対策は、
IEブラウザ か ファイルエクスプローラ か
チェックするために
If TypeName(objWindow.document) = "HTMLDocument" のチェックを残してみては?
'シェルのオブジェクトを作成する Set objShell = CreateObject("Shell.Application") 'ウインドウの数だけまわすぞ For Each objWindow In objShell.Windows If TypeName(objWindow.document) = "HTMLDocument" Then '↓HTML IEの時だけチェックする strTemp = "" strTemp = objWindow.document.body.innertext msgbox strTemp ' strTemp = objWindow.document.getElementsByTagName("div").innertext If InStr(strTemp, "開催のボタン") > 0 Then 'HTML文字列の中から見つけたら Set objIE = objWindow '代入する Exit For '見つけたのでループを抜ける End If End If '↑HTML IEの時だけチェックする Next
みたいに、
If TypeName(objWindow.document) = "HTMLDocument" のチェックを残してみては?
解決の糸口となれば幸いです。 三流プログラマー Ken3