Open GoogleCodeExporter opened 9 years ago
You can keep the session by using a Firefox profile:
Dim wd As New SeleniumWrapper.WebDriver
wd.setProfile "MyProfile" 'Profile name
wd.start "firefox", "https://mail.google.com/mail/"
wd.open "/"
...
Or a Chrome profile:
Dim wd As New SeleniumWrapper.WebDriver
wd.setProfile "C:\MyProfile" 'Full path of the folder containing the profile
wd.start "chrome", "https://mail.google.com/mail/"
wd.open "/"
...
In both cases, the profile is automatically created if it is not already
present.
For Firefox, you can manage profiles with this command line: firefox -p
Original comment by florentbr
on 19 Jan 2015 at 9:39
Original issue reported on code.google.com by
m...@choozeshoes.com
on 19 Jan 2015 at 5:48