How fast is your selenium tests?

13 seconds are good for these tests below?




<?php


class SiteTest extends WebTestCase

{

    public function testIndex()

    {

        $this->open('site/index');

        $this->assertTextPresent('Welcome');

    }


    public function testUser()

    {

        $this->open('user/register');

        $this->assertTextPresent('Registration page');

    }


    public function testGii()

    {

        $this->open('gii/default/login');

        $this->assertTextPresent('Please enter your password');

    }

}



Depends on IDE and other factors such as what you are loading upfront. I find netbeans slow. What IDE are you using?