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?
source
share