13

I keep getting the error while running functional tests using runner with following:

  • selenium 2.44
  • Chrome Driver
  • Windows Server 2008 R2 Enterprise

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?

desertnaut
  • 57,590
  • 26
  • 140
  • 166
Uday
  • 131
  • 1
  • 1
  • 3

6 Answers6

25

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.

Grengas
  • 836
  • 12
  • 16
7

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 :)

Éric Bergeron
  • 620
  • 6
  • 7
3

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.

Sheena
  • 51
  • 1
0

you have different versions of chrome on server and on node

playjazz
  • 1
  • 1
0

In my case, it was a consol application which should run as Administrator to gain access to the HDD

AHMED RABEE
  • 467
  • 6
  • 13
0

Follow These Steps

  1. Press Window key+R

  2. Type RUN

  3. Type %temp%

  4. Click Ok

  5. Press Ctrl+A

  6. Press Shift Delete

desertnaut
  • 57,590
  • 26
  • 140
  • 166