All Questions
Tagged with visual-testing testing
5 questions
-1
votes
2
answers
1k
views
How to best do cross-browser cross-platform visual CSS regression testing? [closed]
Background:
Visual CSS regression testing is where you screenshot (part of) one version of a webpage in a browser and compare it against a screenshot of the previous version of the same webpage in the ...
12
votes
1
answer
722
views
Does the games industry use automated testing for visual parts of games/rendering? How?
Some parts of a game are easy to test in an automated way (logic, maths, input handling); but there's also a lot that's purely visual and not easily testable.
I would be surprised if the games ...
6
votes
2
answers
776
views
Automated testing of programs with graphical output
I am a lecturer for a post-graduate module where I expect my students to write Python code that replicates examples from the textbook. The project has been running for a couple of years and this year ...
3
votes
1
answer
221
views
In what ways can I test an image slideshow javascript code?
I have a slideshow of images (and links) on a page. These images are part of a JSON response to a request sent after the page loads. The slideshow is set to play at an interval of 2 seconds. The ...
26
votes
1
answer
15k
views
How to unit test image processing code?
I'm working in image processing (mainly OCR) and I wonder how I should integrate unit tests in my development.
I'm already using unit tests for more "common" type of code but when dealing with image ...