Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

puppeteer - what makes an execution context the "default" one?

In Chrome's Puppeteer, at ExecutionContextDescription.auxData you can find an object containing the following properties: isDefault, type and frameId

frameId is fairly straightforward to understand, but the other properties doesn't seem documented anywhere. What makes an execution context the default one? Isn't the execution context always just one for each frame at any given time?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

From https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#overview :

Frame has at least one execution context - the default execution context - where the frame's JavaScript is executed. A Frame might have additional execution contexts that are associated with extensions.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...