Giter Site home page Giter Site logo

goto() returns http response about chromy HOT 5 OPEN

onetapinc avatar onetapinc commented on May 12, 2024
goto() returns http response

from chromy.

Comments (5)

dotneet avatar dotneet commented on May 12, 2024 2

Hi,

Currently chromy has no way to achieve this.

But chrome devtools protocol has the event listener that is possibly helpful.

https://chromedevtools.github.io/devtools-protocol/tot/Network/#event-responseReceived

Here is example:

const Chromy = require('chromy')

const chromy = new Chromy({visible: true})
async function main () {
  const url = 'http://example.com/'
  await chromy.start()
  let status;
  await chromy.client.Network.responseReceived((payload) => {
    if (payload.response.url === url) {
      status = payload.response.status
    }
  })
  await chromy.goto('http://example.com/')
  console.log(status)
  await chromy.close()
}

main()

from chromy.

garris avatar garris commented on May 12, 2024 1

This is an important pattern. Would be a good idea to add this to the examples.

Unfortunately -- I suspect that await is going to be problematic for many older implementations -- especially for scripting. This will impact how many developers can start using chromy now. It may be a good idea to show some basic alternative syntax options for those who can't use that syntax yet.

from chromy.

NimaSoroush avatar NimaSoroush commented on May 12, 2024

@dotneet: That looks pretty good in fact. Can we wrap that functionality in goto() method and make the payload.response as the return value of goto()? Currently, goto does not return anything

from chromy.

NimaSoroush avatar NimaSoroush commented on May 12, 2024

@garris : Chromy supports node 6 and later since v0.2.11. which basically support normal promises

from chromy.

dotneet avatar dotneet commented on May 12, 2024

@NimaSoroush sounds good! returning payload.response seems to be useful.

@garris thanks for your advice. I'll be conscious of the node6 compatibility with example
code.

from chromy.

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.