Gets the result of evaluating the specified JavaScript snippet. The snippet may
have multiple lines, but only the result of the last line will be returned.
to
refer to the window of your application, e.g. where "id=foo" is your locator.
Namespace: SeleniumNote that, by default, the snippet will run in the context of the "selenium" object itself, so
will refer to the Selenium object. Usewindow
window.document.getElementById('foo')
If you need to use a locator to refer to a single element in your application page, you can use
this.browserbot.findElement("id=foo")
Assembly: ThoughtWorks.Selenium.Core (in ThoughtWorks.Selenium.Core.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax
Parameters
- script
- Type:
System String
the JavaScript snippet to run
Return Value
the results of evaluating the snippetImplements
ISelenium GetEval(String)See Also