Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Selenium client driver 2.4.0. When running tests using the WebDriverBackedSelenium object, e.g.

     final FirefoxDriver driver = new FirefoxDriver();
     selenium = new WebDriverBackedSelenium(driver, baseUrl); 

how do I inject a Javascript array into my tests that can retain scope across different pages? That is, I want to create a JS var "myArray" that I can access (using selenium.getEval) when I open "http://mydomain.com/page1.html" but I can then reference when I open a different page ("http://mydomain.com/page2.html") within the same Selenium test.

Thanks, - Dave

share|improve this question

1 Answer

I don't think it is possible out of box.

Workaround should work - add to the page some library that can deserialize from JSON (e.g. Dojo), use it to load an array definition to some JavaScript variable and before leaving page get it back, storing it out of scope request.

But I must say you have a kind of strange request - what are trying to do ?

share|improve this answer
I'm trying to convert Selenium HTML tests that use the Selenium global JS variable "storedVars" to store global information. Sadly, this is not available using the WebDriverBackedSelenium driver. Thanks for your reply, but I don't understand your response. Please provide an example that sets and retrieves a global variable using "getEval". Thanks, - – Dave Aug 24 '11 at 14:54
I use the WebDriver directly for some time, so I'll provide ony this "pseudocode": String arrayJson = "[]"; selenium.getEval("window.document.storedVars = "+ arrayJson) // do some work ... // arrayJson = selenium.getEval("window.dojo.toJson(window.document.storedVars)") – Rostislav Matl Aug 24 '11 at 23:49
If you navigate away from the page you're testing, does "window.document.storedVars" still retain its value? It's not for me, and that is the problem. I'm looking for a JS variable that will persist across different pages. – Dave Aug 30 '11 at 12:58
You have to read it and store the value outside request scope. JS variable cannot survive page reload - you can use cookies for that but thats's hardly an improvement and I do not know if Selenium handles them right. – Rostislav Matl Aug 30 '11 at 16:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.