- siteriaitaliana
- Posts : 1
Join date : 2010-10-13
$this->open() OR $this->selenium->open() ???
Wed Oct 13, 2010 4:35 pm
Hi, in my tests i found 2 different ways to test:
1) require_once 'Testing/Selenium.php';
require_once 'PHPUnit/Framework/TestCase.php';
$this->selenium = new Testing_Selenium("*firefox", "http://www.google.com");
$this->selenium->start();
$this->selenium->open("/");
2)require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
$this->setBrowser('*firefox');
$this->setBrowserUrl('http://www.google.com');
$this->open("/page.php");
Which one is the most correct?? What is the difference? After i noticed that using the 2) i can use the API WaitForVisible instead using the 1) i have to implement this via a for cycle and the isVisible API??? Can someone help me, thanks.....
1) require_once 'Testing/Selenium.php';
require_once 'PHPUnit/Framework/TestCase.php';
$this->selenium = new Testing_Selenium("*firefox", "http://www.google.com");
$this->selenium->start();
$this->selenium->open("/");
2)require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
$this->setBrowser('*firefox');
$this->setBrowserUrl('http://www.google.com');
$this->open("/page.php");
Which one is the most correct?? What is the difference? After i noticed that using the 2) i can use the API WaitForVisible instead using the 1) i have to implement this via a for cycle and the isVisible API??? Can someone help me, thanks.....
Permissions in this forum:
You cannot reply to topics in this forum