回答編集履歴
2
追記
test
CHANGED
@@ -24,6 +24,8 @@
|
|
24
24
|
|
25
25
|
element = driver.find_elements_by_css_selector(selector)
|
26
26
|
|
27
|
+
element = [a.get_attribute("href") for a in element] # 追加
|
28
|
+
|
27
29
|
context = {'links': element}
|
28
30
|
|
29
31
|
return render(requests, 'coll/index.html', context)
|
1
修正
test
CHANGED
@@ -9,3 +9,35 @@
|
|
9
9
|
```ここで、`return`してるからではないでしょうか?
|
10
10
|
|
11
11
|
この部分では、何をしたいのですか?
|
12
|
+
|
13
|
+
***
|
14
|
+
|
15
|
+
#### 追記
|
16
|
+
|
17
|
+
```Python
|
18
|
+
|
19
|
+
# views.py
|
20
|
+
|
21
|
+
def get_date(requests):
|
22
|
+
|
23
|
+
selector = '要素'
|
24
|
+
|
25
|
+
element = driver.find_elements_by_css_selector(selector)
|
26
|
+
|
27
|
+
context = {'links': element}
|
28
|
+
|
29
|
+
return render(requests, 'coll/index.html', context)
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
```HTML
|
34
|
+
|
35
|
+
<!-- coll/index.html -->
|
36
|
+
|
37
|
+
{% for link in links %}
|
38
|
+
|
39
|
+
{{link}}
|
40
|
+
|
41
|
+
{% endfor %}
|
42
|
+
|
43
|
+
```で表示できます。
|