Public function func_WebEditset(object,strValue)
strTempfieldname=Replace(Replace(object.ToString,"WebEdit",""),"_"," ")
If object.Exist Then
If object.GetROProperty("disabled")=0 Then
object.Set strValue
func_WebEditset = True
Else
func_WebEditset= " field is disabled"
End If
Else
func_WebEditset=" field is not Found"
End If
End Function
RegisterUserFunc "WebEdit","Set","func_WebEditset",True
Tuesday, May 14, 2013
Register user func
Best practices for test automation in agile software development
Agile software development is a highly iterative and collaborative approach to software development that emphasizes flexibility and a...
-
Agile software development is a highly iterative and collaborative approach to software development that emphasizes flexibility and a...
-
Continuous integration (CI) and continuous testing (CT) are two critical components of modern software development. These practices help t...
-
Test-Driven Development (TDD) is a software development approach that emphasizes writing automated tests before writing the code. The appr...