Модуль Selenium php. ошибка неопределенной переменной

#php #selenium #selenium-webdriver #phpunit

#php #selenium #selenium-webdriver #phpunit

Вопрос:

Кто-нибудь может мне помочь.

 class myClass_DataProviderAddInventory extends MinkTestCase {
  private $_addlotid = array(
    array( 'camera','Nikon'),
    array( 'Dslr','canon')  
  );

   public function SetValueForUpdateParcel() {
    return $this->_addlotid;
    }

/**
 * @dataProvider SetValueForUpdateParcel
 */
    public function testaddinvenotry($newValue,$oldvalue) {
    $this->waitForPageToLoad(1000);
    $this->assertElementSetWithValue_W('css',#item_title','#cid', $newvalue,$oldvalue);

    Selenium_Helper::clickInventorySubmitButton($this);
    Selenium_Helper::clickOkButton($this);
    Selenium_Helper::isProductLinkExists($this);
    Selenium_Helper::isAddLinkExists($this);

    $this->getSession()->wait(500);
  }
}
 

Комментарии:

1. Не могли бы вы опубликовать исходное сообщение об ошибке?