Giter Club home page Giter Club logo

Comments (4)

nathanboktae avatar nathanboktae commented on August 17, 2024

Why? What are you trying to do? For a page load, you can just repond to DOMContentLoaded in the browser.

from mocha-phantomjs.

appzone avatar appzone commented on August 17, 2024

i am trying to do page automation.
like this url http://phantomjs.org/page-automation.html

i am trying to achieve something like this

describe("Checkout from merchant", function() {
  	it("Should return application ID", function(){
			==> do some phantomJS page automation
  	});

  });

is it possible ?

my code is

  describe("Checkout from merchant", function() {
  	it("Should return application ID", function(){
		page.open('http://www.httpuseragent.org', function(status) {
		  if (status !== 'success') {
		    console.log('Unable to access network');
		  } else {
		    var ua = page.evaluate(function() {
		      return document.getElementById('myagent').textContent;
		    });
		    console.log(ua);
		  }
		  phantom.exit();
		});
  	});

  });

but i got this error page is not defined

error_phantom

in the phantomJs example i must declare the page with
var page = require('webpage').create();

if i put that, i get following error

Uncaught ReferenceError: require is not defined
    at page_one.js:1

from mocha-phantomjs.

appzone avatar appzone commented on August 17, 2024

btw i find another solution. separate between mocha and phantomjs instance

but i just want to know if is it possible to do like my comment description upper.

thanks

from mocha-phantomjs.

nathanboktae avatar nathanboktae commented on August 17, 2024

This is not the project you want. It is not for externally automating page crawls - it is for extracting mocha test results on a single page. Please use mocha-casperjs or (Nightmare.js)[https://github.com/segmentio/nightmare]. I'd recommend the later as it uses the more modern Electron, as phantomjs is far behind, based on QT5 and without maintainers.

from mocha-phantomjs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.