BlackBerry accessing JavaScript variable in BrowserField

721 Views Asked by At

I'm using 5.0 BrowserField and I'm able to invoke JavaScript function using

browser.executeScript("..");   

I need to read JavaScript variable. It's possible to directly access JS variable, or should I ask 3rd party to provide JS function for that ?

1

There are 1 best solutions below

0
On BEST ANSWER

This works for me:

Object val= null;
                   try {
                       val = browser.executeScript("variable_name");
                   } catch (Exception ex) {
                       // ...
                   }