What is headless browser
What is headless browser? headless browser is a browser which doesn’t have a GUI. Headless Browser Testing using Selenium WebDriver.
What is headless browser? headless browser is a browser which doesn’t have a GUI. Headless Browser Testing using Selenium WebDriver.
Best C# books for beginners, If you are a beginner and want to learn C#, What book should buy to learn C#? C# is a general-purpose, multi-paradigm programming language developed by Microsoft that runs on the .NET framework. C# is widely used for building mobile applications, games, and windows applications.
How to make WinForm perform Model validation? If you have experience in asp.net mvc development, you will know that we can call ModelState.IsValid to verify the model. This is to verify the legality of the data submitted by the client from a security or business perspective.
C# DbDataReader iterating OracleClob Bug, When you use C# to connect to the Oracle database, you may encounter some unexpected errors. I also encountered similar problems in my work. I happened to see that some friends encountered them on stackoverflow. The following content is from this post. DbDataReader iterating OracleClob Bug I wrote an app … Read more
How to Schedule a Batch File in Windows? If you’re not automating things, you’re missing out on the point of computers. The real purpose of computers is to do tedious, repetitive things humans don’t want to do anymore.
How to catch dump when .NET program crashes? For the dump of catching .NET program crashes, using these three methods can basically meet your requirements.
How to configure windbg on windows and lldb on linux? In this post, I will share how to configure windbg on windows and lldb on linux. This is an article from a group of friends who published to webchat in Chinese, so I quoted it.
There is a small requirement in the project. C# 3 regular expressions match SQL table names. The table name involved in the SQL executed by the data access layer needs to be extracted through C# code, which is used to record some log-related content, because it is an older project. The data access layer is completely written by ado.net, and does not use advanced ORMs such as ef core to assist with persistence.
CPU 100% .NET performance analysis of HIS system, This is a case of performing performance analysis using the his system developed by .net in a production environment when the CPU is 100%. The post shows how to use windbg to find the performance bottleneck of the .net program. The original source is a post from cnblogs. If you can read Chinese, you can find its link at the bottom of the article.
How to use Kotlin 1.5 new feature Inline classes? If you are using Android Studio 4.2.0, IntelliJ IDEA 2020.3 or higher, you will soon receive the Kotlin 1.5 Plugin push. As a major version, 1.5 brings many new features, the most important of which is the inline class.