Eclipse error (s) _during_the_evaluation for expressing quotes hours

In perspective, Eclipse Debug, when using quotation marks in a watchit expression, returns the _during_the_evaluation error error (s)

such as:

 Log.i("A","blah")

will return <error(s)_during_the_evaluation>

or

solo.getWebElement(By.className("title"), 0)

will return <error(s)_during_the_evaluation>

but it works great while executing the code. Any other expression that does not have any quotes in it will work fine. I tried to escape with "\" or "\" no luck (This is java / android btw code)

Any idea how I could use these expressions in the Java Debugger Watch Expression?

+5
source share
1 answer

The problem may be more likely that you seem to be calling static variables than in quotation marks. You must declare the entire class name, including the package, for it to work.

+3

All Articles