Giter Site home page Giter Site logo

Comments (6)

canstand avatar canstand commented on May 28, 2024

If you just need cookies, page.Context().Cookies() should work. If you need request headers, request.AllHeaders() should work.

Note, do not block request:

	chanReq := make(chan playwright.Request, 1)
	page.OnRequest(func(r playwright.Request) {
		// do not block request
		go func() {
			chanReq <- r
		}()
	})

	// handle request in another goroutine
	go func() {
		req := <-chanReq
		headers, err := req.AllHeaders()
		if err != nil {
			log.Print(err)
		} else {
			log.Print(headers)
		}
	}()

from playwright-go.

ctinkong avatar ctinkong commented on May 28, 2024

OK,I get it.The way I used is problematic.

request.AllHeaders() will block

page.OnRequest(func(r playwright.Request) {
// r.AllHeaders() is blocking
headers, _ := r.AllHeaders()
})

Am I right? Thank you.

如果您只需要 cookie,应该可以工作。如果您需要请求标头,应该可以工作。page.Context().Cookies()``request.AllHeaders()

请注意,不要阻止请求:

	chanReq := make(chan playwright.Request, 1)
	page.OnRequest(func(r playwright.Request) {
		// do not block request
		go func() {
			chanReq <- r
		}()
	})

	// handle request in another goroutine
	go func() {
		req := <-chanReq
		headers, err := req.AllHeaders()
		if err != nil {
			log.Print(err)
		} else {
			log.Print(headers)
		}
	}()

If you just need cookies, page.Context().Cookies() should work. If you need request headers, request.AllHeaders() should work.

Note, do not block request:

	chanReq := make(chan playwright.Request, 1)
	page.OnRequest(func(r playwright.Request) {
		// do not block request
		go func() {
			chanReq <- r
		}()
	})

	// handle request in another goroutine
	go func() {
		req := <-chanReq
		headers, err := req.AllHeaders()
		if err != nil {
			log.Print(err)
		} else {
			log.Print(headers)
		}
	}()

OK,I get it.The way I used is problematic.

request.AllHeaders() will block

page.OnRequest(func(r playwright.Request) {
// r.AllHeaders() is blocking
headers, _ := r.AllHeaders()
})

Am I right? Thank you.

from playwright-go.

canstand avatar canstand commented on May 28, 2024

right, currently all OnSomeEvent may have the same issue (playwrigh-go only). Hope it can be solved later.

from playwright-go.

ctinkong avatar ctinkong commented on May 28, 2024

right, currently all OnSomeEvent may have the same issue (playwrigh-go only). Hope it can be solved later.

I tried, but unfortunately, req.AllHeaders() blocked.

	chanReq := make(chan playwright.Request, 1)
	page.OnRequest(func(r playwright.Request) {
		// do not block request
		go func() {
			chanReq <- r
		}()
	})

	// handle request in another goroutine
	go func() {
		req := <-chanReq
		headers, err := req.AllHeaders() // Here is blocked.
		if err != nil {
			log.Print(err)
		} else {
			log.Print(headers)
		}
	}()

from playwright-go.

reginaldl avatar reginaldl commented on May 28, 2024

I haven't had the time to dig more but when calling AllHeaders in a goroutine there be might a race in ActualHeaders. At least I get a lot of complaints when running with -race.

from playwright-go.

ctinkong avatar ctinkong commented on May 28, 2024

use page.Context().Cookies(url) to fix it. thanks.

from playwright-go.

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.