Advertisement
npocmaka

Untitled

Apr 9th, 2015
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.49 KB | None | 0 0
  1. As the Protractor installation could cause some troubles here are the problems you can face and their solution:
  2.  
  3.  
  4.  
  5. --install node.js - should be straightforward  https://nodejs.org/
  6.  
  7. --As protractor needs MS VC++ compiler - install visual studio 2013 express
  8.     - check requirements if you have Windows 7 you'll have to install visual studio for desktop
  9.           ( http://go.microsoft.com/?linkid=9832280 )
  10.  
  11. --to fix CL.EXE EC -1073741515
  12.     1. add %PROGRAMFILES(x86)%\Micrisoft Visual Studio XX.XX\Common7\IDE   to %PATH% environment variable
  13.     2.Copy these files from  %PROGRAMFILES(x86)%\Micrisoft Visual Studio XX.XX\Common7\IDE   : !!
  14.     3.to %PROGRAMFILES(x86)%\Micrisoft Visual Studio XX.XX\VC\bin
  15.  
  16. --to fix LINK fatal error LNK1158:
  17.     1.add  %PROGRAMFILES(x86)%\Windows Kits\X.X\bin\x86  to PATH environment variable
  18.     2.copy from %PROGRAMFILES(x86)%\Windows Kits\X.X\bin\x86 these files : !!
  19.     3.to  %PROGRAMFILES(x86)%\Micrisoft Visual Studio XX.XX\VC\bin
  20.  
  21. --install Python 2.7.9    ( https://www.python.org/ftp/python/2.7.9/python-2.7.9.msi)
  22.     -newer versions will cause an error
  23.  
  24. -- run command nmp install -g protractor
  25.  
  26. -- download selenium-server-standalone* ->
  27.                     https://selenium-release.storage.googleapis.com/index.html?path=2.42/
  28.                     https://selenium-release.storage.googleapis.com/index.html?path=2.45/
  29.     later it will ne pointed as a resourcse in the scripts.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement