vote up 3 vote down star
3

I was wondering if there was anything similar like Mechanize or BeautifulSoup for PHP?

flag

3 Answers

vote up 3 vote down check

SimpleTest provides you with similar functionality:

http://www.lastcraft.com/browser_documentation.php

link|flag
SimpleTest Browser class indeed does seem to do the job right however I was looking for something lighter, perhaps some library not oriented for Unit Testing? – eyze Aug 12 at 2:15
1  
You can use SimpleTest's browser without the rest of the framework. It's a self-contained subcomponent. – troelskn Aug 12 at 11:47
require_once(dirname(FILE) . '/simpletest.php'); and a dozen of other includes. – eyze Aug 13 at 18:11
vote up 1 vote down

I don't know how powerful BeautifulSoup is, so maybe this won't be as great ; but you could try using DOMDocument::loadHTML :

The function parses the HTML contained in the string source . Unlike loading XML, HTML does not have to be well-formed to load.

After using this, you should be able to access the HTML document using DOM methods -- including XPath queries.

link|flag
+1 for the native suggestion, although doing XPath queries is several times more complex than doing the same thing in BeautifulSoup. – eyze Aug 12 at 6:17
oh :-( too bad ^^ – Pascal MARTIN Aug 12 at 19:20
vote up 1 vote down

Don't know about BeautifulSoup, but there is phpquery which is similar to jquery

$doc = phpQuery::newDocument('<div/>');

$doc['div']->append('<ul></ul>');
$doc['div ul'] = '<li>1</li><li>2</li><li>3</li>';

$doc['ul > li:last'] = 'hello';
link|flag
Thanks, SimpleTest seems a little superior however I'll give this one a look. – eyze Aug 12 at 6:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.