I am using the C# Language Bindings of Playwright. Example HTML: <select id="txtType" name="Type" class="form-control"> <option>Blog Posts&l
please, how to get a parent element for a text selector by the Playwright E2E library. Is better to modify the selector (it is string by something like >>
I have been stuck with this for a bit. I need to test a website and I need to post info in order to test if it appears on the page. What I have so far is this
I want to use chrome instead of chromium. I can achieve the same in puppeteer by providing executable path. In playwright it doesn't work as browser type argume
Need to find a way to zoom browser in and out during an e2e test run. Below code does not work. await page.keyboard.down('Control'); for (let i = 0; i < 7;
Currently i open a new browser session using the code below, but it always starts as incognito, can I start a new chromium session but not as incognito?: from b
I have a test config file (playwright.config.ts) with many projects. Usually, I want to test several different browsers. However, when I'm building a test, I wa
I'm using the page-object-model in developing my automated tests in playwright. As such, I'm building a class to hold my locators and expose the locators, but
I'm trying to build my automation framework using playwright with java, however I'm running into below issue when running the tests. Please advice! Failed to in
public async Task Test2() { //IPage page=null; LoginPage lpage = new LoginPage(); IPage page = await IPage.loginToApllication("john", "admin", "<&
How to get all images on the page with playwright? I'm able to get only one (ElementHandle) with following code, but not a collection. const { chromium } = req
I'm trying import playwright framework. However, I faced an issue as below: Traceback (most recent call last): File "simple.py", line 1, in <module>
I very new to Playwright. Due to my test suites, I need to login into my application before running each test. Inside a single spec file that is easy, I can sim
I have a website where I enter the username and password, then I click on the recaptcha field and enter the numbers without any problems but when the login butt