回答編集履歴

2

ドキュメントへのリンク追加

2017/10/10 23:50

投稿

calkinos
calkinos

スコア452

test CHANGED
@@ -43,3 +43,9 @@
43
43
 
44
44
 
45
45
  では
46
+
47
+
48
+
49
+ * [Beautiful Sourp Documentaion](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)
50
+
51
+ * [Selenium Document Navigating](http://selenium-python.readthedocs.io/navigating.html)

1

途中で回答してしまったため修正

2017/10/10 23:49

投稿

calkinos
calkinos

スコア452

test CHANGED
@@ -16,11 +16,21 @@
16
16
 
17
17
  ```
18
18
 
19
- driver.find_element_by_id("fuga2")
19
+ bsObj.find(attrs={"name": "fuga"})
20
20
 
21
21
  ```
22
22
 
23
23
 
24
+
25
+ idで探すのなら
26
+
27
+
28
+
29
+ ```
30
+
31
+ driver.find_element_by_id("fuga2")
32
+
33
+ ```
24
34
 
25
35
 
26
36
 
@@ -29,3 +39,7 @@
29
39
  bsObj.find(id="fuga2")
30
40
 
31
41
  ```
42
+
43
+
44
+
45
+ では