vote up 1 vote down star

Hi all:

I am currently unit testing some javascript, where it handles an event raised by clicking on a certain item in the window. Below is a snipet of the code:

function someFunction() 
{

    var evt = window.event ? window.event : event;

    if (evt == null) { return; }

    var nodeElement = evt.srcElement;

    if (nodeElement == null) { return; }
    .
    .
    .
}

My current approach is to try to create a custom event in my test file which will populate window.event so I can at least get to test the nodeElement == null part. But I am having difficulties doing so (being not from a Javascript backgound). How do I actually create a custom event (in IE)? I'm currently doing unit testing using JsTestDriver so no html file is used. I do not mind using jQuery or just plain Javascript solution.

Thanks.

flag

Could you do $('#some-id').click() etc? – alex Oct 23 at 5:14
@Alex: I'm new to jQuery as well. Do you mind explaning what is some-id please? – BeraCim Oct 23 at 5:17
Ok I tried $(#this').click() and $(#this.document).click(). None worked... – BeraCim Oct 23 at 5:32
Make sure that you enclose #this in quotes - spend a short time looking at the 'selectors' section of the jquery docs (docs.jquery.com/Selectors) – belugabob Oct 23 at 8:13
"#some-id" is a css selector, where some-id would be an id attribute on a html tag – MaLKaV_eS Oct 23 at 8:15
show 1 more comment

3 Answers

vote up 0 vote down

I currently wrote a blog post series about custom events in jQuery. You can use .trigger and .bind and it is really powerful.

link|flag
vote up 1 vote down

I would definitely use jQuery (or some other framework). It will make your life easier. I am sure every browser will have a different way of triggering the event.

http://docs.jquery.com/Events

With jQuery you just do something like

$(window).trigger("eventname")
link|flag
vote up 0 vote down

As alex has pointed out in his comment, you can use jQuery to create events with

$("css selector here").jQueryEventFunction(functionToCall);

So, following your example, if you want to invoke someFunction when a label is clicked you can do:

$("#label-id").click(someFunction);

Now, if you want to simulate clicking it

$("#label-id").click();

And that will do it.

EDIT For the window event you can use

$(window).click(someFunction);

That will bind any click done in the window to someFunction. And if you call $(window).click(); a click event will be simulated, calling someFunction.

link|flag
@MaKLaV_eS: what if I just want to create a window event? From what I know, in order to trigger an event, all I need to do is to click in the browser somewhere and it will trigger an event. I want to catch that event so I can at least be able to test the latter condition in my javascript. – BeraCim Oct 25 at 23:36
See edited answer. Hope this is what you want. – MaLKaV_eS Oct 26 at 8:22
@MaKLaV_eS: Thanks for the update. I have tried your code, and also followed the examples from docs.jquery.com/Events/click, but its still not working. Looks like the problem has something to do with JsTestDriver itself. – BeraCim Oct 26 at 23:18

Your Answer

Get an OpenID
or

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