Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
42 views

import subprocess import os from selenium import webdriver from time import sleep import getpass username = getpass.getuser() sleep(5) port = str(_AD_.Port) ##print(port) cmdurl = 'http://localhost:{}'...
Jaswanth Chowdary's user avatar
1 vote
2 answers
56 views

I noticed that page.type is deprecated in Playwright. Google's AI overview told me that I need to use locator.fill instead but it isn't working for the field I want to fill. await this....
emery's user avatar
  • 9,963
Tooling
1 vote
1 replies
46 views

I’m evaluating test management tools for a small QA team and trying to find something lightweight yet reliable for test case organization and test run tracking. Some of the traditional options I’ve ...
Matt Calder's user avatar
0 votes
0 answers
34 views

I have tried a couple of combination below to set my driver config in karate but nothing seems to work for me. I'm still encountering the error shown below. { type: 'playwright', ...
Gelo's user avatar
  • 1
Best practices
0 votes
1 replies
64 views

I have an EVDA system that each component communicate to each other using Kafka and Outbox Pattern. How to implement an automated E2E testing that I start producing an event from an upstream, then ...
Bhoomtawath Plinsut's user avatar
1 vote
1 answer
59 views

I have an HTML table with data like Username is admin Actions New User ✓ Make Admin Old User Make Admin After clicking "Make Admin", how do I wait for the check mark to show up? I figured ...
lmat - Reinstate Monica's user avatar
0 votes
1 answer
48 views

I'm constructing an mobile automation frame using appium with webdriverIO. My employer is in the early stages of constructing their app so I'm using a boilplate WDIO app as it's a hybrid app. I'm ...
fypnlp's user avatar
  • 1,539
0 votes
1 answer
86 views

Windows 10, PHP 8.4.13, Behat 3.25.0.0. File features/basket.feature: Feature: Product basket In order to buy products As a customer I need to be able to put interesting products into a basket ...
yesnik's user avatar
  • 4,793
2 votes
0 answers
271 views

Earlier with the removal of --load-extension flag in the launch arguments in Chrome 137, the workaround of using --disable-features=DisableLoadExtensionCommandLineSwitch (as mentioned in question) to ...
Harshit Pal's user avatar
0 votes
0 answers
50 views

I am new to automation, so, I'm in a big company where possibly hundereds of developers currently share a single selenium grid. This results in a problem though, which, of this long list of Session ...
Scala Enthusiast's user avatar
0 votes
0 answers
46 views

I am trying to implement Cucumber in my Appium + WebdriverIO framework, but I am stuck: my steps are coming up as undefined even though they are correctly defined. Project structure: Project name ├─ ...
user31570842's user avatar
0 votes
0 answers
39 views

I am automating tests on an app in Android Studio for scanning and pairing with a Bluetooth device. When my test attempts to pair with a device, a system dialog appears asking for Bluetooth pairing ...
mooma's user avatar
  • 1
-5 votes
2 answers
116 views

How to use Convert JSON To Dictionary? 1.file json is correctly. 2.import library correctly. The issue is this keyword "Convert JSON To Dictionary" still red error line. This is error ...
Zack's user avatar
  • 11
0 votes
1 answer
205 views

I, and my team, are running Cypress 13.14.1 on Node 20.17.0 and npm 10.8.2. For over a year this has been working fine - we have a about 80 tests that we run (from our local machines) at least a few ...
MeltingDog's user avatar
  • 15.8k
0 votes
0 answers
50 views

I'm facing a persistent issue with RestAssured where it throws an io.restassured.internal.http.HttpResponseException for a 422 Unprocessable Entity response, preventing my test from reaching the ...
Furkan Özmen's user avatar
1 vote
1 answer
158 views

I am using vitest with vitest-plugin-vis and playwright to perform visual testing in my Vite project. The issue I am facing is that the snapshots that are generated are only capturing part of my ...
MWB's user avatar
  • 1,899
0 votes
0 answers
95 views

When I execute test cases which will result pass test cases azure pipeline successfully run and show results under a min. when I enabled failed test cases azure pipeline keeps on loading- until I ...
Zeeshan ilyas's user avatar
1 vote
0 answers
190 views

I'm trying to create a test where I can simulate multiple users simultaneously passing requests through my custom middleware. I was hoping that I could create multiple simultaneous requests using ...
roscoelee's user avatar
  • 311
1 vote
0 answers
50 views

What is the correct process for running vscode-extension-tester (the project's official example) against the project's compiled source code (as opposed to having to build a .vsix package before ...
Zack's user avatar
  • 6,704
0 votes
0 answers
50 views

I am trying to use vscode-extension-tester to write end-to-end tests for a VS Code extension; however, I can't get the tester to load my extension. How do I debug why my extension isn't loading? My ...
Zack's user avatar
  • 6,704
-1 votes
1 answer
98 views

I have a pop-up modal, in which I am creating a rule from, but when trying to select the elements from the select-menu, my test fails. I have this on the web page <label class="form-label"...
msi's user avatar
  • 64
0 votes
1 answer
82 views

I am using selenium and c# to test the download file from the browser application. when I click on download button then file download option is opening on the browser. So how can I resolve this. Also ...
Mayank's user avatar
  • 1
0 votes
1 answer
77 views

I am working on a project where I am building on top of a solution of a very time-consuming problem. Instead of solving the very time consuming part many times, I only run the solver once, I save the ...
Paweł Wójcik's user avatar
0 votes
1 answer
77 views

I'm trying to open a folder in Visual Studio Code using the openResources() method from vscode-extension-tester on Ubuntu. The code executes without throwing any errors, but the folder doesn't open in ...
noel's user avatar
  • 33
0 votes
1 answer
63 views

We want to assign UUIDs to our front end Vue user-interactable elements (inputs, buttons, links, dropdowns, etc) for our automated testing. We want to structure this in a way that allows common ...
dtthom09's user avatar
  • 297
0 votes
1 answer
52 views

I have a bunch of Cypress tests for a project for a long time, and all went well so far. All tests are end-to-end. I use Cypress 14.4.1 Recently, I had to write tests to check if some button leads to ...
NiNo's user avatar
  • 1
0 votes
0 answers
42 views

I have a large menu on my site. I want to create a test that test's each link individually in it's own it function. I imagined doing it in the following way: let linkArr = []; describe('I am on ...
MeltingDog's user avatar
  • 15.8k
0 votes
1 answer
75 views

I recently had an issue where a button was covered by a transparent element (z-index and position absolute issue) making the button visible but not clickable. Cypress passed these tests and was able ...
MeltingDog's user avatar
  • 15.8k
0 votes
1 answer
183 views

I'm trying up update my test results on my test plan via my release pipeline. I go to the test plan, click execute, click on the dropdown arrow next to "Run for web application", click "...
Cole's user avatar
  • 37
1 vote
2 answers
201 views

I'm new to React, so I started with the official tutorial, a tic-tac-toe game. I made some modifications to it, including adding a timestamp to the screen. Now I want to add tests. I created a file ...
John Skiles Skinner's user avatar
0 votes
2 answers
65 views

The following login page link: https://rahulshettyacademy.com/loginpagePractise/ has 2 radio buttons: Admin and User I have right-clicked on User radio button and then I have selected Inspect to have ...
Muatasim Kamal's user avatar
1 vote
1 answer
48 views

I am trying to rename a folder using vscode-extension-tester. However, I’m not sure what to do after running the following commands: await item?.select(); const menu = await item?.openContextMenu(); ...
noel's user avatar
  • 33
0 votes
0 answers
44 views

We are using RSAT (Regression Suite Automation Tool) to automate testing after updates in Dynamics F&O. In order to connect to F&O and execute the (automatic) tests I need to download and ...
user2962502's user avatar
0 votes
0 answers
390 views

I have an existing project built with MSTest version 3.6.4 and Microsoft.NET.Test.Sdk 17.12.0 with all my unit tests. I added Reqnroll to the project, and I created a feature. After the first build, I ...
Enrico's user avatar
  • 6,882
0 votes
0 answers
29 views

I've executed the following steps of "Automatisierte Reports über TCShell erstellen" https://support-hub.tricentis.com/open?id=manual&lang=de&path=%2Ftosca%2F2320%2Fde%2Fcontent%...
V Siemon's user avatar
2 votes
0 answers
266 views

I trying to download a file into a folder that is not in the list of managed permissions of Playwright. The reason I need to test this particular download is because I am dealing with a websockets ...
Alan Barrientos's user avatar
0 votes
1 answer
116 views

I am attempting to use the vscode-extension-tester from this: tutorial. However, I only need to install my own VSIX extension. I added a script to package.json (extest install-vsix), but it still ...
noel's user avatar
  • 33
2 votes
1 answer
92 views

My JUnit tests simply aren't running. When I tried, nothing happened. JUnit displayed 0/0 tests run, and there were no logs nor errors in the console I checked the different possible causes in this ...
Lucas Brélivet's user avatar
0 votes
1 answer
128 views

Issue: Currently struggling to interact with a quasar q-select Vue component on our system. It can find the element without any issues, and the click event appears to fire, but no animation happens, ...
michaelclark09's user avatar
0 votes
0 answers
68 views

Introduction to Problem Basically, in Azure DevOps, I have created a test plan. Within the test plan I have a test suite with two test cases. In Azure repo, I have an entire project with two unit ...
Hassaan Faruq's user avatar
0 votes
0 answers
21 views

I have some XML layouts in my android which includes coordinator layout and collapsing toolbar inside my coordinator layout. After a lot if hit and trial we found that, xml tag : layout_behavior in my ...
Roop Kishore's user avatar
0 votes
0 answers
54 views

I'm automating an iOS app using Appium and I want the app to start in a completely fresh state every time it launches, but without uninstalling or reinstalling the app. What I’ve tried so far: Set the ...
Murali Guttapalyam's user avatar
1 vote
1 answer
119 views

I'm internship QA testing on Flutter web application with Robot Framework and Selenium Library. My task is to perform end-to-end (E2E) testing on a Flutter web app that heavily uses canvas structure. ...
Anny's user avatar
  • 11
0 votes
0 answers
16 views

I'm working on a mobile web application where I have an element in the HTML. I wrote some JavaScript code that allows users to draw on numbers inside the SVG using their fingers. I want to write ...
KhacNha's user avatar
  • 327
0 votes
1 answer
242 views

I know there are so many threads regarding this but my issue is a bit different. My Browswer version is 134.0..... My ChromeDriver Version is 134.0... and Chrome Version 135 is not available yet for ...
Kahn's user avatar
  • 441
0 votes
0 answers
32 views

Dag testing for data pipeline, what are the best possible ways to automate the data pipeline testing? Best automated way to test the DAG Best possible Automated way to Test the Airflow DAG with ...
Sunil Gajula's user avatar
1 vote
0 answers
109 views

I'm trying to automate an interaction with a dynamic iframe using K6 Browser, but I'm facing difficulties when trying to click a button inside that iframe. The code I'm using is as follows: const ...
Rafael La Guardia's user avatar
0 votes
1 answer
67 views

I've got a mixture of Cucumber .feature files and normal Cypress .spec.js files. Normally, they run together fine as I have included: specPattern: ["cypress/e2e/**/*.spec.js", "cypress/...
MeltingDog's user avatar
  • 15.8k
0 votes
0 answers
35 views

I'm looking for a away to scroll a select options using selinum, the options is inside a modal. I have the coordinates of the select option accurately, using the coordinates I should find a way to ...
Anshad Kt's user avatar
1 vote
1 answer
82 views

First time using Playwright and Typescript. I need to write code for one manual test, but I have problem after click first button, which after shows registration input fields and one button. Error: ...
Māris L's user avatar

1
2 3 4 5
265