Hi,
Could you please help me to resolve following problem: on the launch of IE8, i'm receiving a popup from browser saying Could Not Load Assembly (please see attachment for full copy).
This popup prevents my script to run.
Thanks in advance!
Olek
//Locate the stack panel : ok |
StackPanel stack = app.FindName<StackPanel>("MyStackPanel"); |
//simulate a Right click on the stackPanel : ok (the RadContextMenu appears) |
stack.User.Click(MouseClickType.RightClick); |
RadContextMenu menu = app.Find.ByType<RadContextMenu>(); |
// And I caught an TimeOut Exception |
<telerik:RadContextMenu.ContextMenu> |
<telerik:RadContextMenu name="" > |
... |
</telerik:RadContextMenu> |
</telerik:RadContextMenu.ContextMenu> |
I got one issue on using WebAii 2.0 for testing Silverlight.
Environment: WIn7 x86 + VS 2010 RC. Silverlgiht 3.0 was build in VS2010 too.
Test case do :
Launch browser
Find the Silverlgiht in page and find its combobox inside, then select the combobox item.
After combobox item was select, the product Silverlgith will grab new items to a listbox and filled the listbox.
All above steps work fine. And after the listbox items were filled, I can get find list box control, but from listbox control, I cannot find the listboxitem which were dynamic created!
ListBox listbox = app.FindName<ListBox>("lboxMetaDimensions");
IList
<ListBoxItem> listBoxItems = listbox.Find.AllByType<ListBoxItem>();
The listBoxItems == null.
I try to look into the all children items in all deepth levels recursively, and the result shows it does not contain listboxitem at all. Actually, when I use other Silverlight tool to inspect the v-tree, I can see the listboxitem.
Is any step I need to do after combox selection done and new item were filled in order to get new listboxitem?
Thanks.
Dim
qsb As Element = frame.Find.ById("PRSelectTextbox")
Dim
qsb2 As RadNumericTextbox = frame.Find.ById(Of RadNumericTextbox)("PRSelectTextbox")
And I can see the value inside of it is "1".
However, when I try to set the value, using either
qsb.Attributes(3).value = "2"
or
qsb2.SetValue("2")
I can see the value change in the debugger, but it never changes in the browser, and when I programmatically click the button to update the grid, the grid doesn't update because the textbox hasn't changed.
Earlier in the code I am able to successfully change the text of a HtmlInputText object, but this does not work for the radnumerictextbox.
Any idea why the page is not staying in sync with the debugger?