September 05, 2014

VBScript Tutorial - Free

Learn VBScript quickly by using these video tutorials. VBScript is a powerful scripting language developed by Microsoft. Click on the links below to start learning.
 
VBScript Introduction - tutorial 1: This video introduces VBScript, which is simple and fun to use. It explains variables. It also shows how to write and run a simple script.

VBScript Sub and Function Procedures - tutorial 2: This video explains VBScript procedures, their advantages (save scripting time and testing time) and how to write them. It describes both sub procedures and function procedures.

VBScript If Then statement - tutorial 3: This video explains VBScript conditional statements. Conditional statements control the flow in the script. They contain a condition that can be true or false. If the condition is true, one set of statements is run. If the condition is false, another set of statements is executed.

VBScript Select Case Statement, string functions - tutorial 4: This video explains VBScript conditional statement called the Select Case statement. This Select Case statement finds out the value of an expression at the start of the statement. Different VBScripts statements are run depending on the value of this expression. This is implemented in Case statements within the Select Case statement. If the expression value is not given in any Case statement, the Case Else block is executed. It also explains the many useful functions in VBScript that we can use to manipulate strings.

VBScript For Next statements - tutorial 5: This video explains VBScript looping statements, For Next statement and For Each Next statement. The For Next statement runs a block of code repeatedly depending on the initial and final value of a variable and the step. The For Each Next statement runs a block of code once for each item in a collection or an array.

VBScript Do Loop and While Wend statements. Working with HTML, Excel file - tutorial 6: This video explains VBScript looping statements, While Wend statement and Do Loop statement. These statements are useful when we do not know the number of times a block of code is to be executed. They execute the block of code while the given condition is true. This video also explains how to create HTML (hypertext markup language) file or a web page and Excel file using VBScript.

VBScript Arrays - tutorial 7: This video explains the array variable. An array can be used to store multiple data values. An array can have a fixed size or be dynamic. It is possible to go through each element of the array in order of their index. It is possible to sort an array in a logical order.

VBScript Working with Databases and SQL - tutorial 8: This video explains how to work with databases using VBScript. ADO (ActiveX Data Objects) are COM objects available in VBScript. We can work with the connection and recordset ADO objects. The recordset object is useful when the VBScript needs a copy of the data result set from the database. It is also possible to execute commands directly on the connection object. This video demonstrates VBScript that connects to a Microsoft SQL Server Express dummy database. This script fetches data from the database table, adds a new record, updates an existing record and deletes the added dummy record.

August 24, 2014

Demo web application

Demo web application - Journey Planner


This is a simple web application. You should enter the total distance to travel, the average travel speed and the time to travel every 24 hours. Then click on the Calculate Travel Days button.
- If any data entered by you is invalid, you will get an error message in red color.
- If the data you entered is valid, you will get the number of travel days rounded off to 4 decimal places and in black color.
- If you click the Reset Values button, you will empty the distance to travel and average travel speed values and reset the time to travel every 24 hours to 1 hour.
Note: This web app needs a HTML5 and JavaScript-enabled browser in order to display and function correctly.

Enter the distance to travel (max. 10 digits with decimals):         mile(s)

Enter the average travel speed (max. 10 digits with decimals):  mile(s)/ hour

Select the time to travel every 24 hours: 




April 02, 2014

Free Software Testing Tutorials

Several people who are starting out in software testing have inquired about software testing tutorials. Here is the complete list of free software testing tutorials that you can use to train yourself in the concepts of software testing. The link is:


You should view these software testing training videos in the following order:
  1. What is software testing? Why test software?
  2. Waterfall SDLC and V Model in testing
  3. Requirements analysis
  4. Software test strategy
  5. Agile test strategy and Agile test plan
  6. Test cases
  7. Writing test cases effectively
  8. Test data
  9. System testing
  10. Regression testing
  11. Requirements Traceability Matrix
  12. Testing reports
  13. Bug reporting
  14. Test status report
  15. Software tester roles and responsibilities
  16. Equivalence Partitioning and Boundary Value Analysis
  17. Decision Table Testing
  18. Use Case Testing
  19. State Transition Testing
  20. How to design Test Ideas quickly
  21. How to get Domain Knowledge
  22. How to Test Software without Requirements
  23. Top tips to get software testing jobs
  24. Building software testing skills
  25. How to become Software Testing Expert
  26. Test Estimation with formula example and Questions and Answers
  27. Test Lead Interview Questions And Answers
  28. How to Identify Risks?
  29. Risk Management in Software Projects
  30. Severity and Priority in Software Testing
  31. Defect Density
  32. Cause and Effect Analysis
  33. Cyber Security Basic Terms and Concepts
  34. Introduction to Software Architecture
  35. Memory Leak explained
  36. Race Condition in Software
  37. Off-by-one Errors
Hope that you find these software testing tutorials useful :)

Next, learn from the free Test Automation Tutorials.