如何在Playwright Java中打开一个新标签页,而不出现任何弹出窗口?

huangapple go评论142阅读模式
英文:

How to open a new tab in Playwright Java without any popup?

问题

这会引发 PlaywrightException 异常:请使用 **browser.newContext()**。
英文:
Page newTab = page.context().newPage();

this gives an exception PlaywrightException: Please use browser.newContext()

答案1

得分: 1

你可以使用以下方法在新标签页中打开(而不是新窗口):

Page newTab = page.context().newPage();

但请记住,你的初始页面应该使用newContext()打开,否则你将会遇到类似问题中提到的Playwright异常:

page = browser.newContext().newPage();

英文:

You can open new tab (not new window) using this

Page newTab = page.context().newPage();

but remember you initial Page should be opened with newContext() or else you will get a playwright exception like mentioned in the question.

page = browser.newContext().newPage();

huangapple
  • 本文由 发表于 2023年7月11日 05:10:33
  • 转载请务必保留本文链接:https://go.coder-hub.com/76657361.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定