php - Alternatives to SimpleTest's SimpleBrowser -
i working on , using simple browser simple test framework when found out need use css selectors access element.
unfortunately, discovered in overview not support css selectors currently.
are there alternatives this? looking standalone browser can scripted via php supports css selectors.
here options:
goutte - php-based "browser" testing. sounds similar simple browser.
selenium , sahi - 2 non-php tools automating testing in browser. can both drive automated tests in of main-stream browsers.
mink - php-based testing tool can drive of above tools test site in browser via php script. suspect you're looking for, in conjunction goutte if want replicate you're doing. (although find works better sahi , real browser).
phantomjs - "headless" browser, designed writing browser test scripts. it's not php-based, automated testing possibly best tool available. test in real browser, without overhead of actual ui display, , features designed make testing easier. if want use in php, can driven via sahi, , via mink, can it.
hope helps.
Comments
Post a Comment