rikumaru– Author –
-
Implicit Wait vs Explicit Wait in Selenium
I automated routine works on a specific web page by selenium, then I faced a problem which I couldn't get a required result. Because I wanted to receive the results from the Web API, I had to wait until the results were returned. Perhaps... -
How does WebDriver talk to the browser?
What is Selenium? Primarily it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should) also be automated as well. Selenium Home As officia... -
Four pillars of a good unit test
Introduction Until now, I had been developing applications without unit testing, but my new team has asked me to start doing it.(Yes, what I had been doing was abnormal, and apparently it is normal to implement unit testing.) Having stud... -
NUnit tutorial
Introduction I wrote NUnit tutorial for beginner. This tutorial should give you your first unit test with NUnit. Finally, for those who want to learn more seriously, I also recommend Udemy's recommeded courses, so please read on. What is... -
Design code for unit testing
Better Unit test requires better code I'm learning C# unit test course by Mosh Hamedani.I had thought unit test needs only unit test codes, so I should learn unit test frameworks or mocking framewroks like NUnit, xunit, and Moq. But in t... -
Three Attributes of a Successful Test Suite
I learned that the goal of unit testing is "to enable sustainable growth of the software project" (Khorikov, 2020). However, I still have several questions—for example, how to design good test cases or how to position unit testing... -
What is Unit test?
I want to learn unit test.I studied it a little when I earned my ISTQB CTFL certification. The textbook said Component testing (also known as unit testing) focuses on testing components in isolation. It often requires specific support, s... -
FlaUI : Automate test for windows
I'm interested in automating UI tests for a Windows app developed using WinUI3 in March 2025. Since WinUI3 is a relatively new user interface API, there is less information available compared to more established frameworks like Windows F...
1