Questions tagged [system-testing]

System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements.

System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements. System testing falls within the scope of black box testing, and as such, should require no knowledge of the inner design of the code or logic.

137 questions
1
vote
3 answers

How can I automatically http POST many files sequentially with a break?

for manual testing I want to send multiply files to my local server. At the moment I'm using the firefox extension Poster. But it is a hassle, if you like me have some hundreds files and have to select every single file and post. I want to send each…
keiki
  • 3,260
  • 3
  • 30
  • 38
1
vote
2 answers

what is the difference and advantage of usecase based testing and system testing

In what way usecase based testing is differen from system testing ? Can we consider system tesing as a subset of usecase based tesing , (ie)system testing consider only usecase of components or sub system with in the system.
somaraj
  • 11
  • 2
1
vote
1 answer

Is there a GUI test automation tool that hooks into the Apple iOS?

I need to automate opening and closing of an application, be able to manipulate and verify component functionality within the app, and be able to modify configuration data in the iOS Settings. I think I already know the answer to this one, but is…
1
vote
0 answers

Class properties are read only (test refactoring)

I have inherited code that tests an API that serves data. The customer supplies expected results as SQL code. The test code has a utility class with various overloads for VerifyResult that compares and ADO.NET Object with an object from the API. It…
petemoloy
  • 695
  • 1
  • 5
  • 9
0
votes
2 answers

Testing the Appearance of Web Applications

Duplicate: Testing a website for cross-browser/multiple-version support How do you test visual components I recently talked to a colleague about a tool we use at work for system testing web applications. The colleague then raised the…
digiarnie
  • 22,305
  • 31
  • 78
  • 126
0
votes
0 answers

Self-hosted ASP.NET Core 6 Web API sample system test return always 404 Not Found

I have a project in GitHub that name is BSN.IpTables.Api This project has a simple API as shown here: [ApiController] [Route("api/v{version:apiVersion}/[controller]")] [ApiVersion("1.0")] public class HomeController : ControllerBase { public…
sorosh_sabz
  • 2,356
  • 2
  • 32
  • 53
0
votes
1 answer

menu bar is not appearing in JMETER IDE

jmeter when ever I try to save my test isn't saving and showing error.Even menu bar is not appearing in above image ERROR: = java.lang.NoClassDefFoundError: Could not initialize class org.apache.jmeter.gui.util.FileDialoger in thread…
0
votes
0 answers

System Tests with Jest: How to obtain and cache credentials for test run?

I try to create integration-tests using Jest, the idea is the that those tests perform basis validation for Dynamics 365 (for example: 'Certain teams are provided with an set of security roles). For this purpose do I need to actually invoke the API…
thuld
  • 680
  • 3
  • 10
  • 29
0
votes
1 answer

WinIdea/TestIdea, changing the value of a variable with a python script does not work

I don't know if you hear about isystems tools but I'm working with these, TestIdea/WinIdea. I wrote a scripts in Python, to change the value of a sensor ( 30 times ) and I need to monitor how it is his behavior. I put a test point, with the…
Alex Alexe
  • 19
  • 4
0
votes
1 answer

File attachment fixtures in Rails 7 not attaching correctly

I am following the guide here verbatim but when I run my system tests, the file I am trying to upload does not seem to attach to my fixture. I believe I have everything set up correctly as I do see the uploaded file sitting in the temporary…
0
votes
1 answer

Rails 7 system test on WIndows 10 - certificate verify failed

On Windows 10, with a new Rails 7 application and an empty system test, when I run the system test: rails test test/system/empty_test.rb, I got following error: C:/Ruby30-x64/lib/ruby/gems/3.0.0/gems/net-protocol-0.1.2/lib/net/protocol.rb:46:in…
0
votes
2 answers

How to write 1000 system tests for a process that takes 20 minutes but is parallelizable in .NET C#

Goal To write a set of system tests for a single process with the following details: Each run of the process typically takes 20 minutes. Process runs can be in parallel so over 2000 process runs can complete in an hour on our test system. Each…
user1857450
  • 551
  • 8
  • 20
0
votes
1 answer

How can I fix this Rails minitest & Capybara mailer testing ActionView::Template host error?

I'm trying to test mailers in some system tests. I'm using Ruby 3.0.2, Rails 6.1.4, Capybara 3.26, Selenium-webdriver and I'm writing tests in Minitest. The below tests fails when it gets to the assert_equal ['dave@example.com'], mail.to…
jbk
  • 1,911
  • 19
  • 36
0
votes
1 answer

No output on Travis CI for system tests

I have some weird behavior on a Rails 6.0.4 application when running system tests: when running rails test:system on my machine I correctly see which error is failing, but in Travis I only see the following, without any hint of which error…
0
votes
1 answer

How to test System Tests with many possible outcomes?

This is my first question on StackOverflow. I have a work-related problem which I have rewritten to be about Mario. Me and my colleagues cannot come up with an elegant solution and I am wondering if you have any ideas to help us out. The…