Forum Discussion
1 Reply
Sort By
- rraghvani
Champion Level 3
See Testing Salesforce.
Please find the below reference code
set Salutation=Sys.Browser("*").Page("*").FindElement("#combobox-button-504")
props = Array("tagName", "textContent")
values = Array("BUTTON", "Mr.")
Set link = Salutation.FindChild(props, values, 10)
link.Click
See Testing Salesforce.