How would I select these radiobuttons?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How would I select these radiobuttons?
<div class="formtitle">Email Type:</div>
<div class="formfield">
<table id="ctl00_ContentPlaceHolder1_emailTypeRadioButton" border="0">
<tbody>
<tr>
<td>
<input id="ctl00_ContentPlaceHolder1_emailTypeRadioButton_0" name="ctl00$ContentPlaceHolder1$emailTypeRadioButton" value="False" checked="checked" type="radio">
<label for="ctl00_ContentPlaceHolder1_emailTypeRadioButton_0">HTML</label>
</td>
</tr>
<tr>
<td>
<input id="ctl00_ContentPlaceHolder1_emailTypeRadioButton_1" name="ctl00$ContentPlaceHolder1$emailTypeRadioButton" value="True" type="radio">
<label for="ctl00_ContentPlaceHolder1_emailTypeRadioButton_1">PlainText</label>
</td>
</tr>
</tbody>
</table>
</div>
</div>
This is my amateurish attempt at trying to select the radio button with the lable PlainText
set emailType = PageObj.NativeWebObject.Find("name", "ctl00$ContentPlaceHolder1$emailTypeRadioButton", "input")
call emailType.RadioButton.SetFocus("PlainText").Click
Anyone care to point/shove me in the correct direction?
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Alex,
You can try using a script similar to the example we have created. Before running the script, replace "<PageObject>" in the fifth code line with the actual name of the page displayed in your browser.
'VBScript
Sub Main
Dim PageObj, wTable, strText
Set PageObj = <PageObject>
set wTable = PageObj.NativeWebObject.Find("id", "ctl00_ContentPlaceHolder1_emailTypeRadioButton", "Table")
strText = "PlainText"
If checkItem(wTable, strText) Then
Log.Message "The '" & strText & "' button is in the '" & wState(wTable, strText) & "' state."
End If
End Sub
Function checkItem(wTable, strText)
Dim wCellRButton, wRButton
checkItem = False
Set wCellRButton = wTable.FindChild("innerText", "*" & strText & "*")
If Not wCellRButton.Exists Then
Log.Error "Wrong button text."
Exit Function
End If
Set wRButton = wCellRButton.RadioButton("*")
wRButton.Click
checkItem = True
End Function
Function wState(wTable, strText)
Dim wCellRButton, wRButton
wState = False
Set wCellRButton = wTable.FindChild("innerText", "*" & strText & "*")
If Not wCellRButton.Exists Then
Log.Error "Wrong button text."
Exit Function
End If
Set wRButton = wCellRButton.RadioButton("*")
wState = wRButton.checked
End Function
Best regards,
Alexey
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the help. That's given me a lot of ideas on how to do some other things I was struggling with.
