vatlab / sos-notebook

Multi-language Jupyter Notebook
http://vatlab.github.io/SoS
BSD 3-Clause "New" or "Revised" License
176 stars 17 forks source link

Enable selenium tests under windows #204

Closed BoPeng closed 5 years ago

BoPeng commented 5 years ago

Right now we ignore selenium tests under windows/appveyor https://github.com/vatlab/sos-notebook/blob/464bcc26ed29d326a6e764882dd5043b211a6681/.appveyor.yml#L56

because it is rather troublesome to install chromedriver.

This project provides a few lines

    - IF %SELENIUM%==1 appveyor DownloadFile https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar
    - IF %SELENIUM%==1 appveyor DownloadFile https://chromedriver.storage.googleapis.com/2.27/chromedriver_win32.zip
    - IF %SELENIUM%==1 7z x chromedriver_win32.zip -y >nul

that could help though.

BoPeng commented 5 years ago

Done.