FirefoxのWebドライバーを使用しています。すべてのCookieとキャッシュファイルをカスタムディレクトリに保存したいと思います。しかし、それは私のディレクトリの代わりに一時ディレクトリを取ります。これが私のコードです:
FirefoxProfile firefoxProfile = new FirefoxProfile(path, false);
MessageBox.Show(firefoxProfile.ProfileDirectory); //Its showing blank
driver = new FirefoxDriver(firefoxProfile);
MessageBox.Show(firefoxProfile.ProfileDirectory); //Its showing the temp dir
//not my custom dir
ディレクトリを取得して、そこにすべてのCookieとファイルを保存する方法を教えてください。
ありがとう。
編集:
セレンプロファイルディレクトリを修正する必要があります(常に変更されているため)。以前のCookieとキャッシュファイルを使用できるようにします。それを達成するためのアイデアや代替方法を教えていただけますか?