質問編集履歴
1
違う例のコードを追加しました。こちらコードに間違いはないと思うのですが、pront()で表示されないのですが、関係ありますでしょうか?
test
CHANGED
File without changes
|
test
CHANGED
@@ -92,6 +92,22 @@
|
|
92
92
|
|
93
93
|
|
94
94
|
|
95
|
+
|
96
|
+
|
97
|
+
(違う例)
|
98
|
+
|
99
|
+
↓
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
for elem_h3 in driver.find_elements_by_xpath('//a/h3'):
|
104
|
+
|
105
|
+
elem_a = elem_h3.find_element_by_xpath('..')
|
106
|
+
|
107
|
+
print(elem_h3.text)
|
108
|
+
|
109
|
+
print(elem_a.getattribute('href'))
|
110
|
+
|
95
111
|
```
|
96
112
|
|
97
113
|
|