質問編集履歴
6
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,6 +58,8 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
+
●フラッシュメッセージの図
|
62
|
+
|
61
63
|

|
62
64
|
|
63
65
|
|
5
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,6 +58,10 @@
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
+

|
62
|
+
|
63
|
+
|
64
|
+
|
61
65
|
以上、よろしくお願いします!
|
62
66
|
|
63
67
|
助けてください!
|
4
内容修正
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
Selenium VBAでのデータ取得
|
1
|
+
Selenium VBAでのデータ取得②
|
test
CHANGED
File without changes
|
3
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,11 +28,11 @@
|
|
28
28
|
|
29
29
|
>>店舗名の部分
|
30
30
|
|
31
|
-
Mydata2=elements2.Item(ix0).FindElementsByCss("td:nth-child(2) > a).Text
|
31
|
+
Mydata2=elements2.Item(ix0).FindElementsByCss("td:nth-child(2) > a").Text
|
32
32
|
|
33
33
|
>>店舗名の住所部分
|
34
34
|
|
35
|
-
Mydata3=elements2.Item(ix0).FindElementsByCss("td:nth-child(3)).Text
|
35
|
+
Mydata3=elements2.Item(ix0).FindElementsByCss("td:nth-child(3)").Text
|
36
36
|
|
37
37
|
goto BB
|
38
38
|
|
2
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
>>店舗名の住所部分
|
34
34
|
|
35
|
-
Mydata3=elements2.Item(ix0).FindElementsByCss("td:nth-child(3)
|
35
|
+
Mydata3=elements2.Item(ix0).FindElementsByCss("td:nth-child(3)).Text
|
36
36
|
|
37
37
|
goto BB
|
38
38
|
|
1
内容修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,15 +24,15 @@
|
|
24
24
|
|
25
25
|
>>ジュンク堂書店の部分
|
26
26
|
|
27
|
-
elements2.Item(ix0).FindElementsByCss(" td.stCenter > a > span").Text
|
27
|
+
Mydata1=elements2.Item(ix0).FindElementsByCss(" td.stCenter > a > span").Text
|
28
28
|
|
29
29
|
>>店舗名の部分
|
30
30
|
|
31
|
-
elements2.Item(ix0).FindElementsByCss("td:nth-child(2) > a).Text
|
31
|
+
Mydata2=elements2.Item(ix0).FindElementsByCss("td:nth-child(2) > a).Text
|
32
32
|
|
33
33
|
>>店舗名の住所部分
|
34
34
|
|
35
|
-
elements2.Item(ix0).FindElementsByCss("td:nth-child(3) > a).Text
|
35
|
+
Mydata3=elements2.Item(ix0).FindElementsByCss("td:nth-child(3) > a).Text
|
36
36
|
|
37
37
|
goto BB
|
38
38
|
|
@@ -48,6 +48,12 @@
|
|
48
48
|
|
49
49
|
```
|
50
50
|
|
51
|
+
結果
|
52
|
+
|
53
|
+
Mydata1="",Mydata2="",Mydata3=""
|
54
|
+
|
55
|
+
|
56
|
+
|
51
57
|

|
52
58
|
|
53
59
|
|