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.
以前はクロムの自動更新プラグインを使用していましたが、現在、私のコードには複数の ChromeDriver インスタンスが開いたり閉じたりしており、自動更新を使用できません。また、新しいコンピュータに Auto Refresh をインストールするのは非常に面倒です。
Google Auto Refresh と同様に、Selenium を使用してドライバーを更新する方法はありますか (ドライバーが変化しない場合は 15 秒ごとに F5 をシミュレートします)。
これを行うには2つの方法があります。1. refresh メソッドを使用できます
driver.get("Web サイトの URL"); driver.navigate().refresh();
アクション クラスを使用して F5 キーを模倣できます
アクション行為 = 新しいアクション (ドライバー); act.SendKeys(Keys.F5).perform();