回答編集履歴
2
コードから不要なコメントを削除
test
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
下記コードで「コンテント2」が出力されました。
|
2
2
|
|
3
3
|
```Python
|
4
|
-
content_on_xpath=contener.find_element(By.XPATH,"p[@class='content']")
|
4
|
+
content_on_xpath=contener.find_element(By.XPATH,"p[@class='content']")
|
5
5
|
print(content_on_xpath.text)
|
6
6
|
```
|
7
7
|
|
1
説明を追記
test
CHANGED
@@ -4,3 +4,5 @@
|
|
4
4
|
content_on_xpath=contener.find_element(By.XPATH,"p[@class='content']")#conteiner2から絞り込んでいるはず
|
5
5
|
print(content_on_xpath.text)
|
6
6
|
```
|
7
|
+
|
8
|
+
質問のコードではXPathに省略記法を使用しているので「コンテント1」が出力されます。
|