質問編集履歴

1

コードの追加

2020/11/26 09:10

投稿

cheese-
cheese-

スコア3

test CHANGED
File without changes
test CHANGED
@@ -30,4 +30,44 @@
30
30
 
31
31
 
32
32
 
33
+ ```python
34
+
35
+ from selenium import webdriver
36
+
37
+ from bs4 import BeautifulSoup
38
+
39
+
40
+
41
+ url = "URl"
42
+
43
+
44
+
45
+ options = webdriver.ChromeOptions()
46
+
47
+
48
+
49
+ options.add_argument("user-data-dir=パス")
50
+
51
+ w = webdriver.Chrome(executable_path="パス", chrome_options=options)
52
+
53
+ w.get(url)
54
+
55
+ soup = BeautifulSoup(w.page_source, "html5lib")
56
+
57
+ suugaku = soup.find(class_="")
58
+
59
+ print(suugaku.get_text())
60
+
61
+ ```
62
+
63
+
64
+
65
+ 回答ありがとうございます質問の内容が不十分ですみませんでした
66
+
67
+ paythonでクラスを指定して中のテキストを抜き出すことまではできたのですが
68
+
69
+ コメントを指定する方法が分かりません
70
+
71
+ また、2番目のtdのような指定の方法というやり方もあるのでしょうか?
72
+
33
73
  よろしくお願いします