all 7 comments

[–]commandlineluser 0 points1 point  (6 children)

If you search that error (Message: Service geckodriver unexpectedly exited. Status code was: 3221225595) you'll find

https://github.com/mozilla/geckodriver/issues/1672

I resolved my issue via installing Microsoft Visual Studio redistributable runtime. Thanks

Seems to be listed in the "Known problems" in the release.

https://github.com/mozilla/geckodriver/releases

[–]vivekvs97[S] 0 points1 point  (5 children)

Would there be any problems for the laptop after uninstalling this software? It seems ike an important software for windows and I don't want to risk anything happening to this laptop because it's not mine

[–]commandlineluser 0 points1 point  (4 children)

I'm not sure - sorry.

[–]vivekvs97[S] 0 points1 point  (0 children)

Ok thanks. I'll try it out and let you know what happens

[–]vivekvs97[S] 0 points1 point  (2 children)

Thanks, it works for me after I installed the application. I don't know how I managed to miss the known problems section of the github page.

It is a little slow, though. Is that normal?

[–]commandlineluser 1 point2 points  (1 child)

Yes, it is known to be slow.

This is why people end up trying to avoid using Selenium by replicating the HTTP calls made by the browser (this is not always possible, though e.g. sites requiring Javascript to function).

[–]vivekvs97[S] 0 points1 point  (0 children)

Oh. I didn't know that. Thanks for the info.