diff --git a/README.md b/README.md index 726993e..2c1f3a8 100644 --- a/README.md +++ b/README.md @@ -128,20 +128,6 @@ driver is also given. This is set to `iedrver = NULL` so not ran by default. Set it to `iedrver = "latest"` or a specific version string to include it on your Windows. -### Issues with Windows and Firefox/GeckoDriver - -To run the binaries related to the Selenium/webdriver projects `wdman` -uses the R package `subprocess`. Currently the windows version of this -package uses blocking pipes when it instantiates a process. This causes -issues with firefox/geckodriver when called from selenium. A "shim" is -required as the stderr pipe is blocking and firefox/geckodriver waits for -the pipe to free. - -An example of implementing this shim for windows can be seen in the -[Rselenium](https://github.com/ropensci/RSelenium) package. The -`rsDriver` function currently implements such a shim. It basically -clears the error pipe so the firefox/geckodriver can finish its startup. - ## Further details For further details please see the package vignette: diff --git a/vignettes/basics.Rmd b/vignettes/basics.Rmd index 5e21f0d..2ef6318 100644 --- a/vignettes/basics.Rmd +++ b/vignettes/basics.Rmd @@ -212,21 +212,6 @@ driver is also given. This is set to `iedrver = NULL` so not ran by default. Set it to `iedrver = "latest"` or a specific version string to include it on your Windows. -### ~~Issues with Windows and Firefox/GeckoDriver~~ -This issue is fixed now. - -~~To run the binaries related to the Selenium/webdriver projects `wdman` -uses the R package `subprocess`. Currently the windows version of this -package uses blocking pipes when it instantiates a process. The causes -issues with firefox/geckodriver when called from selenium. A "shim" is -required as the stderr pipe is blocking and firefox/geckodriver waits for -the pipe to free.~~ - -~~An example of implementing this shim for windows can be seen in the -[Rselenium](https://github.com/ropensci/RSelenium) package. The -`rsDriver` function currently implements such a shim. It basically -clears the error pipe so the firefox/geckodriver can finish its startup.~~ - ## Chrome Driver The `chrome` function manages the Chrome Driver binary. It can