Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ホームボタンを押そうとすると、キーイベントに問題があります。
バグはどこですか?
driver.execute_script("mobile: keyevent", {"keycode": 3})
私はpythonとappiumを使用しています。
問題の解決策は余分なスペースでした。コードは次のようになります。
driver.execute_script("mobile: keyevent",{ "keycode": 3 })