How can I maximize the browser window when I use browser context in C#(Nunit) I tried with following code, but still browser is not maximized. public async Task Setup() { _playwright = await Playwright.CreateAsync(); _browser = await _playwright.Chromium.LaunchAsync(new BrowserTypeLaunchOpti...
Playwright Java does not support maximizing the browser as per the screen size of the machine. Available options are using View port. Tried maximizing the browser using keyboard events as well but it does not seem to work vbhardwaj87 changed the title [Feature] Add ability to maximize browser...