In the Eclipse Debug perspective, when using quotes in the watch expression it returns the error <error(s)_during_the_evaluation>
like for example:
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>
This works fine during the code execution. Any other expression not having any quotes in it will work fine. I tried to escape with "\" or "", but no luck (It's Java/Android code by the way).
Any idea how I could use these expressions in the Java debugger Watch Expression?