Posts

Showing posts from October, 2012

What is AJAX ...!

AJAX is Asynchronous JavaScript And XML. This is a web development technique for creating interactive web applications, It allows exchanging small amounts of data with the server behind the scenes, without the page having to reload each time. It helps in increasing web pages interactivity, speed, and customer usability

Comparing 2 Text Files Using Vbscript/QTP

How to compare 2 text files The following function can be used to check and compare the content of the two files. Note: This function is not part of QuickTest Professional/Astra QuickTest. It is not guaranteed to work and is not supported by Mercury Interactive Technical Support. You are responsible for any and all modifications that may be required. CompareFiles (FilePath1, FilePath2) FilePath1 The path to the first file to compare FilePath2 The path to the second file to compare Public Function CompareFiles (FilePath1, FilePath2) Dim FS, File1, File2 Set FS = CreateObject(“Scripting.FileSystemObject”) If FS.GetFile(FilePath1).Size FS.GetFile(FilePath2).Size Then CompareFiles = True Exit Function End If Set File1 = FS.GetFile(FilePath1).OpenAsTextStream(1, 0) Set File2 = FS.GetFile(FilePath2).OpenAsTextStream(1, 0) CompareFiles = False Do While File1.AtEndOfStream = False Str1 = File1.Read(1000) Str2 = File2.Read(1000) CompareFiles = StrComp(Str