I am using casperjs and I got to a point where I have an object like so:
var domElem = this.getElementInfo(".foo");
And now I want to query domElem further on, like so:
var domElemChild = domElem.QUERYFUNCTIONHERE(".bar");
I can't do that because domElem is an object and not a DOM node, what can I do using (preferably) only casperjs?
Note: I tried using cheerio but it outputted the following error upon trying to require it:
Error: Cannot find module 'util'
D:/dev/myproj/phantomjs:/bootstrap.js:289
D:/dev/myproj/phantomjs:/bootstrap.js:254 in require
D:/dev/myproj/node_modules/cheerio/node_modules/htmlparser2/lib/Pars er.js:120
D:/dev/myproj/node_modules/cheerio/node_modules/htmlparser2/lib/Pars er.js:351 Unsafe JavaScript attempt to access frame with URL about:blank from frame with U RL file:///d:/casperjs/bin/bootstrap.js. Domains, protocols and ports must match
There are many possibilities depending on what you want to do with
domElem
.The easiest might be to concatenate the CSS selectors:
Since the CSS path may return unexpected results depending on your document, the following XPath would work as intended:
Everything else must be done in the page context. So you can do something like
Something similar can be done using the clientutils module, but don't forget that this module can only be used inside of the page context.