質問編集履歴
1
文言を修正しました。
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
VBA <p>タグの中にあるテキスト
|
1
|
+
VBA <p>タグの中にあるテキスト取得について
|
test
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
For Each test In webIE.document.getElementByTagName("p")
|
28
28
|
|
29
|
-
If test.innerText = "テスト" Then
|
29
|
+
If test.innerText = InStr(test, "テスト") Then
|
30
30
|
|
31
31
|
Cells(cnt, 1).Value = test.innerText
|
32
32
|
|