Interviewer And Interviewee Guide

SilkTest Interview Question:

How can I access empty string from excel sheet?

Submitted by: Administrator
customize code like this
Solution1:
==========
[-] if sText!=NULL
[ ] Page.tfldName.SetText(sText) // do the operation
[-] else
[ ] Page.tfldName.CleartText()

Permanent solution: Add the below winclass to your code(if it is web application simply paste it, else make HtmlTextField as TextField), Now Text field will not raise exception on null value.

[-] winclass HtmlTextField: HtmlTextField
[ ]
[-] void SetText(String sText optional)
[+] if sText==NULL
[ ] this.ClearText()
[+] else
[ ] derived::SetText(sText)
Submitted by: Administrator

Read Online SilkTest Job Interview Questions And Answers
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.