docs: removed semicolon from code doc as it not required (#580)

This commit is contained in:
Rajendra arora 2020-01-23 23:50:37 +07:00 committed by Dmitry Gozman
parent 7e8bce7911
commit a6042e437a

View File

@ -78,7 +78,7 @@ const iPhone = playwright.devices['iPhone 6'];
const browser = await playwright.launch(); const browser = await playwright.launch();
const context = await browser.newContext({ const context = await browser.newContext({
viewport: iPhone.viewport, viewport: iPhone.viewport,
userAgent: iPhone.userAgent; userAgent: iPhone.userAgent
}); });
const page = await context.newPage('http://example.com'); const page = await context.newPage('http://example.com');
// other actions... // other actions...