Posts

Showing posts from April, 2018

Install Appium : Part 1

Image
To test mobile mobile app, there are various framework available. Appium is one of them, Appium is an open source test automation framework for use with native, hybrid and mobile web apps. It drives iOS, Android, and Windows apps using the WebDriver protocol. In this Part We will download all the required software and library. #Download JDK 1.Go to oracle site . 2. click Java download. 3.New Page will open. 4.Accept the license agreement and download the jdk depending on your os. like : jdk-8u131-windows-x64.exe 5. Now Install the JDK 6. Now Configure the JDK environment by its install directory to the PATH and Add JAVA_HOME variable # Download Appium 1.Go to site  http://appium.io/ 2.Click Download Appium on the site. 3.It will navigate to the Github download page. Click the setup depending upon your OS. In my case it is  appium-desktop-Setup-1.1.0-beta.4.exe 4.Now install the downloaded setup.(double click the downloaded file to install i...

Testing Webhooks

Image
Ever encounter a situation where you need to test the request send by your application to another system. Eg : like when ever you are making changes in your application triggers a request send from your application to other server. Now you need to check if the request send by your server is correct or not. To test this type of scenerio you can use RequestDump . This the server which will dump all the request from your server to this server. Now how to use this. This is the nodejs application which you need to run on your server. Follow the instruction on the github page to install this application. Now suppose you  started server on machine with IP : 172.168.10.100 Then configure your application to send request to IP 172.168.10.100:3000/anything Now in your browser open  172.168.10.100:3000/log this will open the log page. This will show all the dump request send to your server.