Playwright doesn’t support maximising browser window in latest version using “- start-maximized”. Sir Can you pls check & tell is there any alternative?
@rajeshnaidu25276 ай бұрын
@naveen can we record in non-incognito mode. if so can you let me know how can we
@MartinsJDPower3 ай бұрын
Hi Naveen, if I use the "./session" argument within the "launchPersistentContext()", I get this error: "Error: browserType.launchPersistentContext: Target page, context or browser has been closed". Is there a reason for this pls?
@selvaganapathye49998 ай бұрын
Hi Naveen can u help me how to replicate the same method via playwright java i tried but getting errors at launchpersistentcontext
@SmitaVishwasPatil8 ай бұрын
Hi Naveen ... I want join your classes...how I can join it
@naveenautomationlabs8 ай бұрын
Please check the details here : naveenautomationlabs.com/selenium-training-batch/ You can enroll for it from here.
@AnandTesting8 ай бұрын
please can you tell us, How to open Edge in IE mode using playwright?
@tranthinhqnam7 ай бұрын
const { chromium } = require('playwright'); (async () => { const browser = await chromium.launch(); const context = await browser.newContext({ userAgent: 'Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; AS; rv:11.0) like Gecko', viewport: { width: 1366, height: 768 }, extraHTTPHeaders: { 'Accept-Language': 'en-US,en;q=0.9' }, bypassCSP: true, isMobile: false, javaScriptEnabled: true, ignoreHTTPSErrors: true, locale: 'en-US', geolocation: { longitude: 0, latitude: 0 }, permissions: ['geolocation'], timezoneId: 'UTC', colorScheme: 'light', acceptDownloads: true, // Enable the 'msie' flag to open Edge in IE mode args: ['--msie'] }); const page = await context.newPage(); await page.goto('example.com'); // Continue with your testing or automation tasks await browser.close(); })();
@sumitgoyal3858 ай бұрын
Hi Naveen thanx, I have a question here If I use await the code is working but If I apply other approach using then it is not working please help waiting for ur reply :) await page.locator("//div[@class='example']/h3").textContent(); //works page.locator("//div[@class='example']/h3").textContent().then((data)=>{ console.log("value is ="+data); });
@naveenautomationlabs8 ай бұрын
with .then(), the callback function is executed asynchronously when the promise is resolved, and there might be a timing issue where the text content is not yet available when the callback function is executed. So avoid using chaining with then(). Always use await for the right sychronization.
@sumitgoyal3858 ай бұрын
@@naveenautomationlabs thanks for your response Actually I put await before it and it worked ,the reason I used then is I was trying to relate few things related to promise
@naveenautomationlabs8 ай бұрын
Yes use await and use catch also in order to capture the error if element is not found.