-->

When testing with WatiN: “'DebuggerDisplayProx

2019-07-28 02:56发布

问题:

FrameworkActionsLink = CurrentBuyerSite.BuyerWorkAreaFrame.Link(Find.ById("actions"));

I have code which finds a link element by finding by ID.

The HTML on the page is:

<a id="actions" href="Javascript:ShowMenuItem('options','actions'); ... >

I have excluded the full Javascript code in the href where you see "...".

On test execution, sometimes this code works correctly, but sometimes I get the following error:

'DebuggerDisplayProxy()' threw an exception of type 'System.InvalidCastException'

It's a pretty straightforward bit of code, I just wondered if anyone had experienced similar problems or error messages. Do you think this is an issue with the WatiN tool, the web application, the internet browser, or perhaps something else entirely?

回答1:

Can you try the following code:

FrameworkActionsLink = (WatiN.Core.Link)CurrentBuyerSite.BuyerWorkAreaFrame.Link(Find.ById("actions"));

I'm pretty sure that it doesn't like the link being JavaScript:...

Edit: Try maybe this:

CurrentBuyerSite.Eval("ShowMenuItem('options','actions'); ...");


回答2:

What runner are you using? if nUnit 64bit then try 32bit or other runner.

Maybe the issue is that page didn't fully download and that makes problem with javascript function, try replace Click() for ClickNoWait().



标签: watin