Unknown command ‘WaitForAllTabsToStopLoading’ issue

For people out there still fighting with the Unknown command ‘WaitForAllTabsToStopLoading’ issue: We just updated the chromedriver and webdriver to the newest version, and it made the issue disappear from our system. It is a good practice to update the drivers to the newest ones when they released. It can spare you a lots of […]

Read more
Basic HTTP authentication and Webdriver

I encountered an interesting problem last week. I had to make an automated test scripts on a test site which was protected by Basic HTTP Authentication. I’ll assume that everybody knows how Basic HTTP Authentication works and will just focus on the solution:  WebDriver driver = new ChromeDriver();  driver.get(“http://username:password@URL”); Of course you should change the […]

Read more
Mobile testing -Taking Screenshot on Android

Taking a screenshot while testing on Android phone can be a bit confusing, since the process isn’t the same on every device. There are different ways to take a screenshot. 1 – Ice Cream Sandwich (4.0) and above If you have Android Smartphone with Ice Cream Sandwich or above installed, screenshot option is built-in! Just […]

Read more
Using Canoo Web Test

From the Canoo web page, download the latest WebTest release. Current one is 3.0. http://webtest.canoo.com/webtest/manual/Downloads.html Unzip the bulid.zip file, for example to Webtest folder. Now configure the system path You will find it in the following location:  Open the System Properties (WinKey + Pause), select the Advanced tab, and click to the Environment Variables button, […]

Read more
Manual testing

If you decide to work in QA, you’ll soon be overwhelmed with information, technical terms and specialized software. That’s why important thing is to learn basics as soon as possible. The best choice is to start with manual testing. No fancy automation, no special programs to learn, only you and the software you’re testing. Manual […]

Read more