回答編集履歴
1
追記
test
CHANGED
@@ -13,3 +13,19 @@
|
|
13
13
|
# 1862374024
|
14
14
|
|
15
15
|
```
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
【コメントを受けての追記】
|
20
|
+
|
21
|
+
最初に見つかった要素のidを取得します。
|
22
|
+
|
23
|
+
```Python
|
24
|
+
|
25
|
+
target = soup.find(class_=['selectable msg-text-box _compile ng-scope'])
|
26
|
+
|
27
|
+
if 'ORANGE' in target.text:
|
28
|
+
|
29
|
+
print(target.parent.parent.parent.get('id').split('-')[-1])
|
30
|
+
|
31
|
+
```
|