Reputation: 151
I keep getting the error while running functional tests using runner with following:
Error:
Error Description: Listening on 0.0.0.0:7000
Starting tunnel...
UnknownError: [POST http://test.com/wd/hub/session / {"de
siredCapabilities":{"browserName":"chrome","name":"tests/intern","idle-timeout":
60,"selenium-version":"2.44.0"}}] unknown error: failed to write prefs file
(Driver info: chromedriver=2.12.301325 (962dea43ddd90e7e4224a03fa3c36a421281ab
b7),platform=Windows NT 6.1 SP1 x86_64) (WARNING: The server did not provide any
stacktrace information)
Command duration or timeout: 1.06 seconds
Anyone have ever come across such issue? How do i fix this?
Upvotes: 15
Views: 23347
Reputation: 124
If someone using Windows 10 or 11 experiences this issue while Google Drive synchronization is active, they should try turning off the synchronization of Selenium files (or just stop Google Drive). It helped me.
Upvotes: 1
Reputation: 140
Follow These Steps
Press Window key+R
Type RUN
Type %temp%
Click Ok
Press Ctrl+A
Press Shift Delete
Upvotes: 0
Reputation: 481
In my case, it was a consol application which should run as Administrator to gain access to the HDD
Upvotes: 1
Reputation: 51
This issue occurs if C drive disk runs out of space.The best solution to clear temp files.This solution worked for me.
Open Run command
2.Type % tmp%
3.Click on OK
4.Select all files.Delete all the files permanently.
Upvotes: 3
Reputation: 755
It can be caused by executing ChromeDriver in parallel. Other errors as "failed to write first run file" or "cannot create default profile directory" may happen in that case.
My solution was to specify option user-data-dir. Two concurrent Chromedriver should not use same user data directory.
chromeOptions.AddArgument("--user-data-dir=C:\\tmp\\chromeprofiles\\profile" + someKindOfIdOrIndex);
You can of course change the path for whatever you want :)
Upvotes: 8
Reputation: 1054
I've recently had the same issue. The problem was caused by full C drive. Apparently chromedriver needs some space in C drive (or the drive where chrome binary file is located) to create temporary profile files and so on.
One of the solutions could be to move chrome installation to some other drive. You could use mklink command in command line window.
Upvotes: 28