Coder Social home page Coder Social logo

Comments (7)

jfeldstein avatar jfeldstein commented on August 17, 2024

I found an example of changing the userAgent in the tests, but now I'm missing how to set an onLoadFinished callback. I see it in the testpagepushnotifications.js test, but it isn't actually tested and isn't working in the same way as the others.

How should I be doing this?

from node-phantom.

jfeldstein avatar jfeldstein commented on August 17, 2024

PS. I'm setting the onLoadFinished callback, but it's never getting called. I think maybe I'm misinterpreting the effects of 45014fd

from node-phantom.

nym avatar nym commented on August 17, 2024

I needed to do this as well, so I found the referenced test page:

https://github.com/alexscheelmeyer/node-phantom/blob/master/test/testpagesetget.js

Here's the snippet:

page.set('settings',{'userAgent':'node-phantom tester'},function(err){});

from node-phantom.

nym avatar nym commented on August 17, 2024

In the end I did this to get it to work.

                    page.set('settings', {
                        userAgent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11",
                        javascriptEnabled: true,
                        loadImages: true
                    });

from node-phantom.

alexscheelmeyer avatar alexscheelmeyer commented on August 17, 2024

Yes, the page.set function is the way to do it.

from node-phantom.

reverie avatar reverie commented on August 17, 2024

@alexscheelmeyer , the tests show use of .set('userAgent', ...), but it doesn't actually do anything. The tests pass, but the client doesn't use the passed-in user-agent. You have to use @nym 's solution, including the JS and images settings, to properly set the user agent.

from node-phantom.

JohanDufau avatar JohanDufau commented on August 17, 2024

You need to specify .userAgent for the first argument of page.set function like this :

page.set('settings.userAgent', 'your new user agent string');

from node-phantom.

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.