Test Selenium Multiple Execution

Hey guys.

Actually, I’m testing my Yii-Application.

I’m really happy with Unit-Tests, Fixtures and functions-tests.

But I’ve got a quest about these functions-tests with Selenium.

That’s my test class.


<?php

class StartTest extends WebTestCase {


	public function testTitle() {

		$this->open('');

		$this->assertTextPresent('Hoome');

	}


	public function testSiteArticles() {

		$this->open('de/articles');

		$this->assertTextPresent('Artikel');

	}

	


}



Why does Yii this methods executing 3 times? A functional test is very time intensive…

Ah ok. I know why, now.

That’s because, there are 3 Browser definied.

I didn’t realized it because it always took the same browser!

It’s ok now. Thx.