XPath

1. What is XPath XPath (XML Path Language) is an XML‑oriented path language. Purpose:Use path expressions to query nodes, node text and node attributes within XML/HTML documents, with built‑in conditional …

Introduction

Official source code is now hosted on GitHub: https://github.com/zzzprojects/html-agility-pack Html Agility Pack is one of the most classic open‑source HTML parsers in the .NET ecosystem. Written in C#, it is …

Generate other test data

Faker.Net Internet‑related data (Email, Domain, URL, IP), Phone Numbers, Addresses PhoneNumber Mobile Numbers Number Extensions for Other Countries Address Location Data More common methods from this module: Example Generate other …

Lorem random text generation

You can also generate random paragraphs for testing purposes. Example Output Result The console prints out Lorem Ipsum (dummy placeholder text), the classic Latin‑style placeholder copy. Sample snippet:FUGA NOSTRUM COMMODI …

Introduction

Faker.Net is an open‑source mock test data generator library for .NET / C#. Inspired by the Ruby Faker ecosystem, it solves the common pain point of lacking large‑scale realistic test …

File Download DownloadTo

JumpKick.HttpLib — File Download DownloadTo Description Use .DownloadTo(savePath, …) to directly download and save network resources to local disk, usually used with Http.Get().Callback parameters: Examples With progress and completion callback …

File Upload

JumpKick.HttpLib — File Upload Overview File upload is implemented with Http.Post() + .Upload(), using the multipart/form‑data format for local file uploads;Core class: NamedFileStream(form‑field name, file name, MIME type, file stream) …

POST Requests

JumpKick.HttpLib — POST Requests 1. Overview of Available Request Methods (Http Static Class) Unified fluent structure: RequestMethod().ParameterConfig().OnSuccess().OnFail().Go(); 2. Two Parameter‑Passing Modes for POST 3. Example 1: Form Submission 4. Example …

GET Requests

JumpKick.HttpLib — GET Requests 1. Basic Syntax 1: Minimal Working Request (no exception handling) Without OnFail, any network error will crash your program with a popup error dialog 2: Success …

Overview

Brief Introduction to HttpLib (C# .NET Framework) 1. Library Overview HttpLib (by James Thorne) is a .NET HTTP request helper library released under the Apache 2.0 License. It simplifies asynchronous …