Automation can add huge ROI when your script is getting executed multiple times across different browsers and different platforms.While running Selenium script on Edge Browser you might come across a prompt like "Personalise your web experience". Today we will discuss How To Disable Personalise your web experience Microsoft Edge Prompt In Selenium. This prompt can create or … [Read more...] about Disable Personalise Your Web Experience Microsoft Edge Prompt In Selenium
How To Fix Error: No tests found In Playwright
Recently I started working with a playwright for one of the projects and started playing with a playwright but very impressed with the feature they provide. You can execute playwright tests in various ways like CLI mode or directly from VSCode if you are using the Playwright extension. While running the test from cli you might come across the below error No tests found In … [Read more...] about How To Fix Error: No tests found In Playwright
How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
If you are new to programming then its tough to remember each and every keywords, syntax of loop, conditional statements, classes names, module name etc. Eclipse, Intellij idea , VSCode editor etc code editors can be great help in such cases, these IDE's comes with auto suggestions of code, code completion and even code recommendation. If you are new to eclipse then I would … [Read more...] about How To Fix Eclipse Autocomplete Or Code Suggestion In Eclipse
Best and easy way to Group test cases in selenium
How To Group test cases in selenium. I am sure you must have got this question in mind is there any way to group a set of test cases in Selenium, yes we have the TestNG group feature which will allow you to do the same. Grouping in Automation is quite an interesting feature through which you can easily categorize your test cases based on requirements. For Example- If we … [Read more...] about Best and easy way to Group test cases in selenium
Handle Authentication Pop Up in Selenium 4 using Chrome DevTools Protocols API
In the past, we have seen different ways to handle authentication in Selenium using AutoIT, Robot Class, and sometimes even using Actions class as well right. In Selenium 4 we have CDP support which allows us the bypass these credentials. If you are new to Chrome DevTools Protocol then I would recommend you to read official docs which will help you to … [Read more...] about Handle Authentication Pop Up in Selenium 4 using Chrome DevTools Protocols API