Posts by Lizzie • 63 points
5 posts
-
1
votes3
answers1938
viewsA: Test case is a use case?
From a use case it is possible to derive one or more test cases. The use case is like an artifact that represents what the developer should implement on the requirement. In this association, the…
-
0
votes2
answers1371
viewsA: Selenium, how do you control the speed of the test run?
Use implicit waiting to control the flow of execution. Putting sleeps is not a good practice as it greatly burdens the test suite. With implicit waits (wait until an element is displayed, wait for…
-
0
votes5
answers1023
viewsA: What is the difference between starting an empty variable and starting directly with the value?
If you declare a variével $var; and use it in some part of the code without being assigned value, the memory junk can cause the program to crash or worse, can create inappropriate behavior that will…
-
1
votes1
answer1131
viewsA: Is there a difference between "Test Team" and "QA Team"?
Quality Analyst is a professional in the area of SQA, while Test Analyst is a professional in the area of Software Testing. QAI makes this differentiation, so much so that there is Certified…
-
4
votes1
answer346
viewsQ: What is a YAML file and when should we use it?
What is a YAML file for and when it is appropriate to create it in a project?