回答編集履歴

2

さらに追記

2020/04/23 07:46

投稿

shirai
shirai

スコア1290

test CHANGED
@@ -27,3 +27,19 @@
27
27
  driver.find_element_by_xpath('//p[text()="サンプルB"]/following-sibling::div/a').click()
28
28
 
29
29
  ```
30
+
31
+
32
+
33
+ # さらに追記
34
+
35
+
36
+
37
+ どうぞ
38
+
39
+
40
+
41
+ ```python
42
+
43
+ driver.find_element_by_xpath('//p[contains(text(), "B")]/following-sibling::div/a').click()
44
+
45
+ ```

1

追記

2020/04/23 07:46

投稿

shirai
shirai

スコア1290

test CHANGED
@@ -11,3 +11,19 @@
11
11
 
12
12
 
13
13
  cf) [https://qiita.com/rllllho/items/cb1187cec0fb17fc650a](https://qiita.com/rllllho/items/cb1187cec0fb17fc650a)
14
+
15
+
16
+
17
+ # コメントを受けて追記
18
+
19
+
20
+
21
+ 多分以下で行けると思います。
22
+
23
+
24
+
25
+ ```python
26
+
27
+ driver.find_element_by_xpath('//p[text()="サンプルB"]/following-sibling::div/a').click()
28
+
29
+ ```