AWS Hybrid Cloud Testing – Part 4 – Automation using Python and Boto3

Don’t be afraid to learn new things. As I have stated many times, there is no shortage of things to learn. No matter where you are or how experienced you are, you can always learn new technologies. In fact, to survive in the new world of evolving technologies, you are expected to learn new things…

Automate Online Demo Form with Selenium WebDriver and C#

In this article, we will automate an online form with Selenium WebDriver and C#.. An online demo form is available on this site: http://toolsqa.com/automation-practice-form/ As you can see, the form comprises of following: text boxes for entering first name and last name radio button for selecting gender (male or female) radio button for selecting years of…

Automate simple Google search with Selenium WebDriver and C#

As you get more familiar and comfortable with Selenium WebDriver, you will notice that majority of the issues lie with identifying objects in the UI. Since developers tend to design the UI in different ways, as an automation expert, it is your job to find a way to correctly identify objects in the UI. Some…

Basic Selenium Automation in 30 Minutes

The main hurdle with Selenium automation is identifying the element on the web page. Once that is done, the rest is just performing actions on the element. Since you do not know how a web page is developed, you cannot expect the developers to follow the same standard. For example, in some web pages, elements…

Improve SEO of Your Blog with Automation

Disclaimer: I am not really advocating that you increase the traffic to your Blog artificially.  If you look at traffic to my own blog, not very high, is it? But I am a firm believer in sharing knowledge. I believe that it is the fundamental right of every human being to have access to free…

Application Release needs to keep pace with iPhone O/S Versions

As a Test Manager, you purchased an Automation tool for automating native or hybrid mobile applications. Then you purchased a set of new mobile devices e.g., iPhone with IOS version of 11.2. When you try to run automation on that mobile device, you find out that the tool only suppots up to IOS version 10.3….

Part 1: Selenium Web Driver Automation for ASP.NET webpage

The testing industry is slowly coming to the realisation that the role of a tester will be more technical in future. Gone will be the days where tester focuses only on black and white box testing. With the adoption of DevOps model, the line that separates tester from other technical resources will slowly disappear. A…

Agile in Private and Public Sector: To Be or Not To Be

  If you have never heard of the buzzword “Agile” before, then you must have been living in Mars! This is what every Manager wants to have, but not everyone can actually pull it off in its true sense. Being a big supporter of agile technology, I have found the experience of implementing agile methodology…

Automation in Testing: What is the best approach?

When you have to run regression testing on the same application many times, or when you are making small enhancements to the application and you, as a Test Manager, want to ensure that existing functionalities are not broken, you automate the application/solution so that the test cases can be repeated over and over again. So…