回答編集履歴

1

説明の修正

2020/08/12 02:33

投稿

MT-333
MT-333

スコア22

test CHANGED
@@ -38,8 +38,6 @@
38
38
 
39
39
  actions = ActionChains(driver)
40
40
 
41
- actions.reset_actions()
42
-
43
41
  actions.move_to_element(target_list).perform()
44
42
 
45
43
  driver.find_element_by_xpath("XXXX").click() # 任意のメニューを選択
@@ -52,7 +50,7 @@
52
50
 
53
51
  actions = ActionChains(driver)
54
52
 
55
- actions.reset_actions()
53
+ actions.reset_actions() # キューに溜められたアクションを解放
56
54
 
57
55
  actions.move_to_element(target_list).perform()
58
56
 
@@ -64,6 +62,6 @@
64
62
 
65
63
 
66
64
 
67
- ※ 1回目の実行前のリセットはいらないかもしれません。
65
+ ※ 1回目の実行前のリセットは必要ありません。
68
66
 
69
67
  ※ 各実行ごとにインスタンスの生成(actions = ActionChains())を入れないとエラーとなります。