Larry Martell
Larry Martell

Reputation: 3756

creating and executing a Javascript function with Selenium

I am trying to create and execute a JavaScript function with Selenium. I am doing it like this:

js_func = """
     function blah(a, b, c) {
        .
        .
        .
};
"""
self.selenium.execute_script(js_script)
self.selenium.execute_script("blah", 1,2,3)

I don't get any errors from the first one (creating the function), but the second one gives me:

WebDriverException: Message: u'blah is not defined'

Is what I'm doing valid? How I can tell if the function was successfully created? How can I see the errors (assuming there are errors)?

Upvotes: 6

Views: 4917

Answers (1)

Blender
Blender

Reputation: 298106

It's just how Selenium executes JavaScript:

The script fragment provided will be executed as the body of an anonymous function.

In effect, your code is:

(function() {
    function blah(a, b, c) {
        ...
    }
})();

(function() {
    blah(1, 2, 3);
});

And due to JavaScript's scoping rules, blah doesn't exist outside of that anonymous function. You'll have to make it a global function:

window.blah = function(a, b, c) {
    ...
}

Or execute both scripts in the same function call.

Upvotes: 13

Related Questions