1
vote
1answer
18 views

PhantomJS image of Dom Element

I'm new to PhantomJS and not very good with Javascript to be honest. I'm looking to take a snapshot of a given website but only the selected dom element. So command wise it would look a little like ...
0
votes
0answers
53 views

Casperjs find order of html elements

I'm trying to query a webpage for a particular order of an html element, the "booking" class element. The structure is that the div with class:".booking-container" contains children "booking". So I ...
0
votes
1answer
81 views

Send a Crossdomain GET request Server Side with Phantomjs/Jquery

Is there a way to incorporate $.get("http://localhost/?action=post", { site: "Test" } ); On the server side with PhantomJs and Jquery? includeJs() and injectJs() don't seem to do anything but ...
1
vote
2answers
53 views

Unable to find an existing element using casperjs

I am using casperjs as a testing tool for my application. I am facing a weird issue here. casper.then(function () { this.click('a[href="/ui/thunder/"]') }) casper.then(function () { ...
1
vote
2answers
475 views

can phantomjs work with node.js?

I would like to use phantomjs in my node.js script. there is a phantomjs-node library.. but unfortunately the author used this weird coffee script code to explain what he's doing: phantom = require ...
1
vote
1answer
303 views

Simulate programmatic button click using Phantomjs and test with Jasmine

Using the phantomjs-jasmine to make a simple test //example_spec.js describe("Click button", function() { it ("should be become 3", function() { var i = 0; var button_element = ...
1
vote
0answers
148 views
+50

How do I execute jQuery promises in phantomJS?

I'm using trying to use nodejs and phantomjs on the server-side for SEO of our site. While ajax works fine, I'm not able to execute custom promises that I've used in my code. How do I make phantomJS ...
0
votes
0answers
69 views

jQuery does not load inside page.evaluate

I am writing a phantomjs automation script that involves jQuery. I'll try to be brief. First - the page load Version 1: page.includeJs("http://............../1.9.0/jquery.min.js", function() { ...
0
votes
0answers
198 views

PhantomJS JQuery click events don't fire on Linux, but do on OS X

I ran this code on PhantomJS in Linux and in OS X: var page = new WebPage(); page.open("http://www.anandtech.com/", function() { console.log("Loaded"); ...
0
votes
2answers
1k views

Use jQuery DOM selector syntax in PhantomJS?

I'm learning PhantomJS and wondered if it's possible to use jQuery DOM selectors in the JS files PhantomJS runs? I've seen a short example on github that appears to indicate this: Sample of ...
1
vote
1answer
254 views

Set PhantomJS to capture entire screen after using clipRect()

After doing setting page.clipRect followed by page.render, how can you disable clipRect so that subsequent page renders are of the entire viewport? page.clipRect = {top:0, left:0, height: 10, width: ...
0
votes
0answers
140 views

Submitting Forms Node-Phantom

Hey fellows I have been trying for days now to navigate a site with Node's Node-Phantom module for phantom.js. I have successfully been able to inject jQuery into the page and fill a form with the ...
3
votes
0answers
491 views

Jasmine lost jQuery with PhantomJS: ReferenceError: Can't find variable: $

I want to test my JS codes which uses jQuery by Jasmine in console with PhantomJS, but ReferenceError: Can't find variable: $ I can test the codes by Jasmine in browser normally. Thank you for your ...
1
vote
0answers
826 views

How to use NodeJS / PhantomJS / CasperJS on Windows 7

I need to scrape a website form (on-the-fly) which has AJAX and SESSIONS. I did a lot of research and I came across several possible solutions one being Python::Mechanize. I don't know python and cURL ...
2
votes
0answers
294 views

Is it possible to simulate drag and drop in casperjs and phantomjs like in selenium?

I am trying to simulate a Drag & Drop event that is done using JQuery in my site. Manually performing the "drag & drop" with my own JQuery "works", but after the form where the drag & drop ...
1
vote
1answer
609 views

Crop screenshot to element in PhantomJS

I know it's possible to arbitrarily crop a screenshot in PhantomJS, using page.clipRect(): page.clipRect = { top: element_top, left: element_left, ...
0
votes
4answers
185 views

Use JavaScript string operations to cut out exact text

I'm trying to cut out some text from a scraped site and not sure what functions or library's I can use to make this easier: example of code I run from PhantomJS: var latest_release = ...
1
vote
1answer
1k views

login to a webpage using phantomjs and Jquery

I am new to phantomjs, Java script and WebScraping in General. What I want to do is basic http authentication and then visit another URL to get some information. Here is what I have till now. Please ...
4
votes
1answer
1k views

Injecting JQuery into Amazon.com pages using PhantomJS causes problems with JQuery

I'm opening any page in the Amazon.com domain (for example "http://www.amazon.com") and then attempting to inject JQuery like this: var injected = page.injectJs('jquery-1.7.1.js'); ...
2
votes
4answers
626 views

jQuery “:contains()” analog for pure JS

I'm writing a script for CasperJS. I need to click on the link that contains a span with "1". In jQuery can be used :contains('1'), but what the solution is for selectors in pure Javascript? HTML: ...
2
votes
1answer
3k views

Click on a link with phantom.js and retrieve the document html

I'm new with phantom.js and I'm trying to navigate on a website page, to click on a link (that calls an AJAX function and changes the document HTML) with phantom.js. Here is my code: ...
2
votes
2answers
4k views

PhantomJs clicking links or running on-page functions

I'm just getting used to PhantomJs and so far its really cool. I'm trying to crawl a site and get data about the products on the site. Each product page loads with the default color of the product ...
1
vote
2answers
690 views

Capture XHR with jQuery?

I'm using PhantomJS with jQuery and I'm wondering if it's possible to capture an XMLHttpRequest as it's passed to the browser, without initiating the POST/GET yourself.