Public Function func_waitForPage(objectref)
Dim strResult
Dim intloopcounter
strResult=False
Set wshell = CreateObject("WScript.Shell")
wShell.Sendkeys("^{HOME}")
For intloopcounter = 1 to 3
If objectref.Exist Then
sub_VerifyErrorNumber "wait for page"
strResult = True
Exit For
End If
Next
If strResult <> True Then
func_waitForPage = False
Else
func_waitForPage = True
End If
End Function
Monday, May 20, 2013
Wait for a page to load
AI in Software Testing: How Artificial Intelligence Is Transforming QA
For years, software testing has lived under pressure: more features, faster releases, fewer bugs, smaller teams. Traditional QA has done her...
-
Test-Driven Development (TDD) is a software development approach that emphasizes writing automated tests before writing the code. The appr...
-
Agile software development is a highly iterative and collaborative approach to software development that emphasizes flexibility and a...
-
Software development is a complex process that requires a high degree of accuracy, efficiency, and speed. One way to achieve these goals i...