Skip to main content

Posts

Showing posts from July, 2020

Beginners tutorial -:working with JMeter in Mac and windows - Part-01

  Prequisite   you should have Java downloaded in your system with Home path set under environment variables.(as of today Java version 8 and higher are required fro jmeter ) for help check out this link Note Always run the jmeter on your secondary browser,  if you give the primary browser for proxy settings then your internet connection will be disrupted for the browser as well as system For ex if you have chrome and firefox and your primary or default browser is chrome then do all the proxy setting in firefox so it won't hamper the system Internet connection  if you have safari as your default browser in your mac os then set proxy in chrome/firefox  MAC Download jmeter from the link  here click on the hypelink under section Binaries  "Apache JMeter( 5.3 ). tgz" file  for Mac   Tar file will get downloaded Double click on the tar file to unzip  once you open the folder  got to bin and search for jmeter.sh file this is a executa...

Working with cucumber - Fundamentals

Hi,  The video talks about how to create a Maven project, what dependencies are required to run cucumber on your system. for reference copying all the dependency required for running cucumber This video is also available in youtube Copy and paste these dependency between <project>   </project> tags in your POM file and save.     < dependencies > < dependency >     < groupId > org.testng </ groupId >     < artifactId > testng </ artifactId >     < version > 7.1.0 </ version >     < scope > test </ scope > </ dependency > < dependency >     < groupId > info.cukes </ groupId >     < artifactId > cucumber- junit </ artifactId >     < version > 1.2.6 </ version >     < type > pom </ type >     < scope > test </ scope > </ dependency ...