Skip to main content

Posts

Showing posts from April, 2017

What are some of the most common challenges faced by software QA team?

Here we go with the top challenges: 1) Testing the complete application: Is it possible? I think impossible. There are millions of test combinations. It’s not possible to test each and every combination both in manual as well as in automation testing. If you try all these combinations you will never ship the product 2) Misunderstanding of company processes: Some times you just don’t pay proper attention what the company-defined processes are and these are for what purposes. There are some myths in testers that they should only go with company processes even these processes are not applicable for their current testing scenario. This results in incomplete and inappropriate application testing. 3) Relationship with developers: Big challenge. Requires very skilled tester to handle this relation positively and even by completing the work in testers way. There are simply hundreds of excuses developers or testers can make when they are not agree with some points. For this tester...

Steps to configure Selenium WebDriver environment

Steps to Download Java Navigate to https://www.java.com/ Click on Free Java Downloads button. Click on the Agree and Start Free Down Button in the page as shown below. Steps to installing Java. After Java is installed, the next step is to set the environment variables. Steps to setup Environment Variables: Navigate to the path where Java is installed and go to the path until as below C:\Program Files\Java\jdk1.8.0_65\bin Copy the above path and Right-click on MyComputer -> Properties. Click on Advanced System Settings and click on “Environment Variables”. In the System Variables, paste the above-copied path and paste in the Path field. Click OK and Click OK Note: To verify if Path is set correctly, Go to Command Prompt by typing cmd in the Run and then in the Command Prompt type javac and should return list available as below: Download Selenium WebDriver based on language in which you want to use for Automation. Say you can use Java, C#, Ruby, Python, etc. The m...