Articles tagged with Programming

Overview of SiteCore for Beginners

Sitecore is a digital experience platform that combines content management, marketing automation, and eCommerce. It's an enterprise-level content management system (CMS) built on ASP.NET. Sitecore allows businesses to create, manage, and publish content across all channels using simple tools.

Locator Strategy: Ensuring Test Stability and Reducing Flakiness in UI Testing

When it comes to UI testing, the reliability and consistency of your tests are paramount. In this article, we will explore various strategies to ensure the stability of your tests and minimize issues like flakiness and false reports. Our focus will be on utilizing TypeScript and Playwright to illustrate these strategies.

Page Object Model Architecture for UI Testing

In the world of software testing, efficiency, maintainability, and scalability are paramount. The Page Object Model (POM) architecture is a popular approach to UI testing that promotes these virtues. It not only helps in achieving robust test automation but also ensures that the test code is easy to maintain and adapt. This blog will dive into the core concepts of the Page Object Model and how to implement it for your UI testing needs.

Using OpenAPI Codegen for TypeScript to Generate Client Code and Automate Testing

This basic guide will walk you through using OpenAPI Codegen to generate TypeScript client code from an OpenAPI specification, creating a test client, and automating test cases with Jest. We will also show you how to set up essential scripts in your `package.json` file to streamline the development and testing process. As our example, we'll use the Petstore API specification.

Creating an ASP.NET Web Applicaton for Beginners

In this tutorial, we will cover the basics of creating a simple web application using ASP.NET Core. You will learn how to set up your development environment, create a basic web application, and understand essential concepts.