Modify a JavaScript variable with Selenium - Stack Overflow

admin2025-04-03  0

I have a boolean JavaScript variable named foo that I would like to change the value of from true to false. The variable has global scope.

In Selenium, how can I change the value of this variable?

(The variable, hidden to the user, disables a CPU-intensive feature that causes Selenium to choke.)

I have a boolean JavaScript variable named foo that I would like to change the value of from true to false. The variable has global scope.

In Selenium, how can I change the value of this variable?

(The variable, hidden to the user, disables a CPU-intensive feature that causes Selenium to choke.)

Share Improve this question asked Jun 8, 2012 at 16:09 Donald TDonald T 10.7k17 gold badges65 silver badges93 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

You didn't specify a language and Selenium tool, so...

Java + Selenium WebDriver

// assuming JS is enabled for this driver instance
((JavascriptExecutor)driver).executeScript("window.foo = false;");

Java + Selenium RC

selenium.getEval("window.foo = false;")

C# + Selenium WebDriver

((IJavaScriptExecutor)driver).ExecuteScript("window.foo = false;");
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743619541a213648.html

最新回复(0)