php - I got an error in my magento test automation framework -


i try run magento test automation framework net beans, got error

php warning:  require_once(symfonycomponents/yaml/sfyaml.php): failed open stream: no such file or directory in c:\programs\mtaf\framework\mage\selenium\helper\file.php on line 29 php fatal error:  require_once(): failed opening required 'symfonycomponents/yaml/sfyaml.php' (include_path='c:\programs\mtaf\framework;c:\programs\mtaf\testsuite;.;c:\programs\php\pear') in c:\programs\mtaf\framework\mage\selenium\helper\file.php on line 29 

but pear components , unit components installed successfully.

the below commands used install pear , php unit.

c:\programs\php>pear upgrade c:\programs\php>pear channel-discover pear.phpunit.de c:\programs\php>pear channel-discover pear.symfony-project.com c:\programs\php>pear channel-discover components.ez.no c:\programs\php>pear install phpunit/phpunit c:\programs\php>pear install phpunit/phpunit_selenium c:\programs\php>pear install phpunit/dbunit c:\programs\php>pear install symfony/yaml 

i haven't tryed unit tests on magento follow instructions github's magento taf repository. forgot instruction > pear install pear.symfony-project.com/yaml-1.0.2 more instructions on installing test automation framework take here

i believe instruction pear install pear.symfony.com/yaml install latest version of yaml symfony 2 (magento uses symfony-project.com -> symfony 1)


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -