Posts

What is selenium WebDriver - Introduction, Architecture, Set up, Advantages and Disadvantages

Image
When it comes to web automation testing, there are several frameworks like Selenium, TestNG, Cypress etc., Test automation framework is decided by using parameters like type, complexity, along with the framework expertise available within the team. However, Selenium is the most preferred framework among all the test automation frameworks For starters, Selenium WebDriver is the core of the Selenium automation framework. In this Selenium WebDriver  chapter, I am going into the integral views of Selenium WebDriver as well as we will learn selenium architecture and basic understanding of it. At the end of this chapter, you will get to learn about basics of selenium and framework of selenium WebDriver So, let us get started   What is Selenium? Selenium is one of the widely used open-source Web UI (User Interface) automation testing frameworks. It enables Software Engineer’s to execute tests on different browsers, platforms, and computer languages. During my QA career, I have t

Learn to print Hi World! on the screen in C programming

  In this model, you will figure out how to print "Hi, World!" on the screen in C programming. Program to print hello world on Screen:   #include <stdio.h> void main()  {    printf("Hi, World!");                             // printf() displays the string inside quotation }     Output:   Hi, World!     How does "Hi, World!" program works? 1.      The #include is a preprocessor command that tells the compiler to include the contents of  stdio.h  (standard input and output) library in the program. 2.      The  stdio.h  file contains functions such as  printf()  to take input. 3.      Execution of a C program starts from the  main()  function. 4.      printf()  is a library function to send output to the screen. In this program,  printf()  displays  Hi, World!  on the screen.