Hi
am not able to capture the Radio button selection using silktest
So anyone who knows, kindly help me to resolve this issue
Thanks
Moses
Printable View
Hi
am not able to capture the Radio button selection using silktest
So anyone who knows, kindly help me to resolve this issue
Thanks
Moses
[QUOTE=ebby23;30855]Hi
am not able to capture the Radio button selection using silktest
So anyone who knows, kindly help me to resolve this issue
Thanks
Moses[/QUOTE]
Hi,
To select a radio button use:-
rdoWindow.HtmlRadioList(object).Select(choice)
rdoWindow - your main window
object- The radio list object
choice- radio selection
If you want to identify individual radio buttons, then set the option on the 'Compatibility' tab of the 'Agent Options' dialog appropriately.
Regards
Sabarish
[QUOTE=sabariish;30939]Hi,
To select a radio button use:-
rdoWindow.HtmlRadioList(object).Select(choice)
rdoWindow - your main window
object- The radio list object
choice- radio selection
If you want to identify individual radio buttons, then set the option on the 'Compatibility' tab of the 'Agent Options' dialog appropriately.
Regards
Sabarish[/QUOTE]
Does anyone have any tips on randomizing the radio button selection? I have a choice of say, 4 radio buttons. There are no dependencies on that selection so it won't change screen or option selection, it is for informational purposes only. How might I randomize my selection?
Hi,
Can you clear your doubt?
Hi,
Can you explain your doubt clearly?
I think i can help you out .
Hi,
My answer may help you to some extent.
If those four radio buttons are there within a table, then we can easily randomize the selection.
Step1: Turn on ShowHtmlTables
Step2: Capture the table
step 3: Try out with below statement.
Browser.HtmlPageName.HtmlTableName.RadibuttonColumnName.Select("#{i}")
Note: where i = 1,2,3 or 4.
and Tag value '#{i}' would be changed and it depends on how SilkTest recongnizes your Html Radio button uniquely.