Saturday, October 31, 2015

Node.js : How to install node.js installer in windows machine

Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine. It is lightweight and efficient.

image_thumb[3]

  • Double click on the installer file. In my case it is “node-v5.0.0-x86.msi”. A pop up window is displayed.
  • Click on Run button.

image_thumb[4]

  • Node.js setup window is displayed. Click on Next button.

image_thumb[7]

  • Check on the checkbox named “I accept the terms in the License agreement”. Click on Next button.

image_thumb[12]

  • Keep the destination path same in this window and click on Next button.

image_thumb[17]

  • Click on Next button.

image_thumb[15]

  • Click on Install button.

image_thumb[19]

  • A pop up window is displayed and click on Yes button.

image_thumb[25]

  • Installation starts.

image_thumb[20]

  • Click on Finish button.

image_thumb[26]

  • Node.js installation is now complete.
  • In order to verify that node.js is installed properly, open command prompt window by writing “cmd” text in the run text box and press Enter key from Keyboard.

image_thumb[23]

  • Command prompt window is displayed and type the following command.

node –version

 image_thumb[28]

  • Inspect that node.js version 5.0.0 is displayed.

image_thumb[30]

  • It is proved that node.js is installed properly.

Cypress: How to handle browser-based authentication pop up dialog in Cypress

Five years ago I have written a blog on how to handle browser-based authentication for selenium webdriver.   Now it is for cypress. Cypress...