Skip to main content

Questions tagged [automated-tests]

Test automation is the use of software to control the execution of tests, the comparison of actual outcomes to predicted outcomes, the setting up of test preconditions, and other test control and test reporting functions. Commonly, test automation involves automating a manual process already in place that uses a formalized testing process (wikipedia.org).

automated-tests
-1 votes
1 answer
27 views

Proper use of "assert True" in Selenium Python

I have written a simple automated test to test the login functionality of a Web-based application. I have a question about the if clause at the bottom and the assert True statement within it. Is it ...
Trevor's user avatar
  • 193
-5 votes
0 answers
32 views

System.exit(0) in test case without system-lambda [closed]

I am working on component testing. Where one of my component exits with the system.ext(0) for success scenario and System.exit(1) for failure scenario. I previously used System-Lambda from catch ...
swathi taduvayi's user avatar
-4 votes
0 answers
21 views

Too many front-end testing tools, how and why choose a tool? [closed]

I need some advice about choosing a front-end testing tool. We have several webshops that all use the same code base. We are looking for a tool for mainly E2E testing. The code base for now is plain ...
Ginodavecte's user avatar
0 votes
0 answers
13 views

python selenium how can I create a personal class with atributes of webdriverWait? I need POLL_FREQUENCY so my test can run smoothly in every step

I have this class: class LoginPage(WebDriverWait,BaseWait,BaseStep): def __init__(self, driver): super().__init__(driver) self.driver = driver And I need to inject the driver with ...
mppalilon's user avatar
0 votes
0 answers
5 views

Microsoft Dynamics Finance and Operations - how to set up Regression Suite Automation Tool for non-admin users

I have set up one user on a single virtual machine with non-admin access to RSAT (Regression Suite Automation Tool) but I want to add additional users. I have followed instructions at: https://learn....
DanUK's user avatar
  • 33
0 votes
0 answers
48 views

Robot's key event locks the keyboard

I use the following event to escape a window's pop-up ("This page is ready for print. Would you like to ...") but it seems that the release event doesn't work. Once the test is finished, the ...
Mr Cas's user avatar
  • 658
1 vote
1 answer
29 views

Cypress - How to iterate through the values of an environment variable and verify each item from the carousel list

I want to test whether the carousel on my website contains the correct items that are represented as company logos. Each carousel item has an <img> element with the 'alt' attribute which is ...
bazzinga's user avatar
1 vote
0 answers
49 views

How to slowMo a single test

I would like to slow down the test execution of test step. I´m testing a container which has two tabs and each tab has different table with data. When I click on a tab, it takes time until data is ...
Klim Bim's user avatar
  • 569
0 votes
2 answers
38 views

Selector for a button with no unique ID

I was writing test selectors for selenium in python for a website like Booking.com. For one example I had to automate selecting a button from a list of buttons. The format for the button is as under: &...
Dark Geek's user avatar
0 votes
0 answers
15 views

Runing WebDriverIo Test on Electron Application in Dev Mode

I am trying to use wdio for my electron project, its working very well when running it on the build (release/win-unpacked/) but when I set the configuration file to use it directly in dev mode ...
khaldoun kassem's user avatar
0 votes
1 answer
31 views

To find X path of the capital city of country but by using countries X path

Hi guys I want to find the X path of the capital city of the country by using the country.Help me in finding the X path. I have used independent and dependent X path but not able to find it. Link of ...
Anish Kumar's user avatar
-2 votes
0 answers
26 views

[Unreal 5.4]Gauntlet Test Unable to find "MyTest" test in assemblies

I am trying to use Gauntlet for a simple test like a helloworld kind of approach, i have setup a C++ testcontroller .cpp and .h and a HelloworldTest.cs also added Gauntlet in Build.cs file of my ...
Zevahc's user avatar
  • 30
2 votes
1 answer
32 views

Cypress - Page Load Fails despite loading correct JSON

I'm trying to learn Cypress. And I'm trying to intercept an API call and return a fixed JSOn response. It works correctly with all responses being sent, and the page loads in the IDE too but Cypress ...
Ariha's user avatar
  • 33
0 votes
0 answers
12 views

PixiJS - I have to double click to open the Pause screen. Why is that?

In trying to find out why the pause menu opens when the pause button is double clicked instead of being clicked once. It’s a web application which I haven’t made and I’ve never worked with PixiJS. I’...
user25148622's user avatar
1 vote
1 answer
69 views

How to create warning assertions in Playwright TypeScript tests for non-critical failures?

How to create warning assertions in Playwright TypeScript tests for non-critical failures? I'm working on Playwright tests using TypeScript, and I need a way to handle assertions that throw warnings ...
Barış Can Ateş's user avatar

15 30 50 per page
1
2 3 4 5
885