$confirmation = 'text'
$this->chooseCancelOnNextConfirmation();
$this->click($buttonXpath);
if ($this->isConfirmationPresent()) {
$text = $this->getConfirmation();
if ($text == $confirmation) {
$this->chooseOkOnNextConfirmation();
$this->click($buttonXpath);
$this->getConfirmation();
$this->waitForPageToLoad($this->_browserTimeoutPeriod);
}
}
Теперь не хочет. последнее что выполняет это $this->click($buttonXpath) и отваливается с ошибкой Could not connect to the Selenium RC server. Кто-то с этим сталкивался?

