Experience & exploration about software QA tools & techniques. Maintaining & writing blog posts on qavalidation.com! Publishing video tutorials on youtube.com/qavbox

Selenium testing introduction for beginners

Selenium is an open source technology for automating browser-based applications across different browsers and platforms. Selenium mainly interacts with the html elements on the browser and performs actions as programmed like look and perform actions on browser manually (Clicking on button, enter text on edit box etc.).Main components: Selenium IDE Selenium RC (Selenium 1) Webdriver…

Download defects from QC to Excel using QC OTA

Dim tdcSet tdc = CreateObject(“TDApiOle80.TDConnection”) Dim sUserName, sPasswordsUserName = “” ‘sPassword = “” ‘ Dim sDomain, sProjectsDomain = “”   ‘sProject = “” ‘ tdc.InitConnectionEx “http://qc..com/qcbin” ‘tdc.Login sUserName, sPassword tdc.Connect sDomain, sProject If (tdc.LoggedIn <> True) Then    MsgBox “QC User Authentication Failed”    ‘WScript.QuitEnd If Fn_Defects_To_Excel() ‘========================================  ‘To download defects from QC to excel sheet ‘========================================= Sub…

Arrays in VBScript

An Array variable can have different data type values like int, char, string, Boolean etc An Array variable values can be assigned or retrieved by using it’s index, index can not be -ve. An Array variable can be single/multi dimension: if multi dimension variable, can have up to 60 dimension. Static Array variable – ‘Declaration…

How to find your application window/childwindow using TestStach.White

Try below code to find your application window/child windows by using TestStack.White framework – Lets take NotePad as our application – //get the required window List windows = new List(); windows = Desktop.Instance.Windows(); //Get all the windows on desktop for (int i = 0; i < windows.Count; i++) { string str = windows[i].Title; if (str.Contains(“Notepad”))…

Weblinks to know more about TestStack.White framework

We have seen how we can automate desktop applications using testStackWhite feamework. Some more useful links you can follow A very useful weblink to know more about white framework from white.codeplex.com is HERE. http://www.dreamincode.net/forums/topic/322108-c%23-teststackwhite-for-beginners/ http://blogs.msdn.com/b/john_daddamio/archive/2008/04/04/testing-wpf-applications-with-the-white-ui-test-framework.aspx White: An UI Automation Tool for Windows Application This is what I got till now with my searching thru internet,…