Capture.PNG

DAVID TZEMACH

  • Home

  • Blog

    • Agile Software Development
    • Software Testing
    • Cloud Computing
    • Automation Testing
    • Software Development
    • DevOps - Tools, Code and technologies
  • My Experience

  • About me

  • My Books for purchase!

  • More

    Use tab to navigate through the menu items.

    dzcomp@gmail.com

    +972-526982298

    • Facebook
    • Twitter
    • LinkedIn

    Share on LinkedIn

    • software testing (75) 75 posts
    • Scrum Framework (45) 45 posts
    • Agile (42) 42 posts
    • Automation (40) 40 posts
    • Agile Testing: Best Practices and Challenges Strategies (35) 35 posts
    • C# Tutorial (34) 34 posts
    • Scrum Process Best Practices (28) 28 posts
    • Cloud Computing (22) 22 posts
    • Devops Tools and Technologies (16) 16 posts
    • Best Practices for Scrum Meetings (15) 15 posts
    • How do we Manage Bugs in Agile? (13) 13 posts
    • Agile estimation and prioritization techniques (12) 12 posts
    • scrum roles and responsibilities (12) 12 posts
    • Bash Scripting (8) 8 posts
    • Docker & Kubernetes (8) 8 posts
    • Agile HR Practices (6) 6 posts
    • Vagrant (4) 4 posts
    • Metrics & KPI's (3) 3 posts
    • All Posts
    • Agile Software Development
    • Software Development Tutorials
    • Cloud computing
    • DevOps
    • Test Automation Framework
    • Software Testing
    Search
    Selenium C# Tutorial: Assertion in Selenium WebDriver using C#
    David Tzemach
    • Nov 20, 2021
    • 3 min

    Selenium C# Tutorial: Assertion in Selenium WebDriver using C#

    Selenium WebDriver is a testing framework that would easily automate any test scenario on a web application with its feature-rich API for...
    7120
    Selenium C# Tutorial: MSTest QuickStart Guide
    David Tzemach
    • Aug 8, 2021
    • 4 min

    Selenium C# Tutorial: MSTest QuickStart Guide

    In my previous, we talked about how to use NUnit with Selenium WebDriver, but due to your increasing questions and requests related to...
    4160
    Selenium C# Tutorial: ExpectedException Attribute explained
    David Tzemach
    • Aug 4, 2021
    • 1 min

    Selenium C# Tutorial: ExpectedException Attribute explained

    While working with unit tests, it is widespread that our tests will fail due to one exception or another, and these types of exceptions...
    230
    C# Tutorial For Beginners: Setup NUnit Test Runner
    David Tzemach
    • Jul 20, 2021
    • 2 min

    C# Tutorial For Beginners: Setup NUnit Test Runner

    In this post, I will show you how you can install NUnit and how you can use it to increase the clarity, readability, and efficiency of...
    1200
    C# Tutorial For Beginners: Test-Driven Development (TDD) | David Tzemach
    David Tzemach
    • Feb 8, 2021
    • 5 min

    C# Tutorial For Beginners: Test-Driven Development (TDD) | David Tzemach

    Test-Driven Development (TDD) is an evolutionary approach to conducting a development process that combines test-first development. The...
    1710
    C# Tutorial For Beginners: Polymorphism
    David Tzemach
    • Jan 1, 2021
    • 2 min

    C# Tutorial For Beginners: Polymorphism

    Polymorphism means that we can use class fields and methods and use them in another form in a class that inherits from it. For example,...
    260
    C# Tutorial For Beginners: Inheritance (Derived and Base Class)
    David Tzemach
    • Dec 29, 2020
    • 1 min

    C# Tutorial For Beginners: Inheritance (Derived and Base Class)

    As an object-oriented language, we can define a Top-level class (AKA: Base Class) and additional classes (AKA: Derived Class) that will...
    40
    C# Tutorial For Beginners: Properties (Get and Set)
    David Tzemach
    • Dec 29, 2020
    • 1 min

    C# Tutorial For Beginners: Properties (Get and Set)

    Private variables can only be accessed within the same class. However, there are different scenarios where we need to access them and...
    20
    C# Tutorial For Beginners: Constructors
    David Tzemach
    • Dec 29, 2020
    • 1 min

    C# Tutorial For Beginners: Constructors

    A constructor is a method that we can add to a class to initialize the class object. Constructors are highly recommended, as it is called...
    20
    C# Tutorial For Beginners: Classes and Objects
    David Tzemach
    • Dec 29, 2020
    • 1 min

    C# Tutorial For Beginners: Classes and Objects

    C# is an object-oriented programming language. As such, it contains classes, object attributes, and more. When you define a class, it's...
    30
    C# Tutorial For Beginners: Working with collections(Queue)
    David Tzemach
    • Dec 28, 2020
    • 1 min

    C# Tutorial For Beginners: Working with collections(Queue)

    It represents a first-in, first-out collection. It is used to create an array that supports the logic of first-in, first-out of elements....
    10
    C# Tutorial For Beginners: Working with collections(Stack)
    David Tzemach
    • Dec 28, 2020
    • 1 min

    C# Tutorial For Beginners: Working with collections(Stack)

    It represents a last-in, first-out collection. It is used to create an array that supports the logic of last-in, first-out of elements....
    20
    C# Tutorial For Beginners: Working with collections(Hashtable)
    David Tzemach
    • Dec 27, 2020
    • 1 min

    C# Tutorial For Beginners: Working with collections(Hashtable)

    The hashtable collection is used to handle scenarios of Key-and-value pairs that should be organized based on the hash code of the key...
    30
    C# Tutorial For Beginners: Working with Enums
    David Tzemach
    • Dec 24, 2020
    • 1 min

    C# Tutorial For Beginners: Working with Enums

    An Enum is a class that represents a group of “Read-Only” variables that cannot be inherited or inherited from other classes. We will use...
    20
    C# Tutorial For Beginners: Working with collections (Dictionaries)
    David Tzemach
    • Dec 24, 2020
    • 2 min

    C# Tutorial For Beginners: Working with collections (Dictionaries)

    The dictionary class is part of the “System.Collections.Generic” namespace. In this article, I will review this class and its main...
    30
    C# Tutorial For Beginners: Working with collections(ArrayList)
    David Tzemach
    • Dec 23, 2020
    • 2 min

    C# Tutorial For Beginners: Working with collections(ArrayList)

    The namespace “System. Collections” contains different types of collections that we can use in our program instead of using simple...
    90
    C# Tutorial For Beginners: Working with File System Objects
    David Tzemach
    • Dec 21, 2020
    • 3 min

    C# Tutorial For Beginners: Working with File System Objects

    This article will review the System.IO namespaces and its main classes that we can use to work with file system objects. The Directory...
    110
    C# Tutorial For Beginners: Introduction to the Path class
    David Tzemach
    • Dec 19, 2020
    • 1 min

    C# Tutorial For Beginners: Introduction to the Path class

    The path class resides in the “System.Io” namespace and handles system objects such as folders and files. This article will cover the...
    50
    C# Tutorial For Beginners: Working Static Elements
    David Tzemach
    • Dec 17, 2020
    • 1 min

    C# Tutorial For Beginners: Working Static Elements

    Static elements are essential as they can upgrade the efficiency and clarity of the program. Static variables provide the power to create...
    40
    C# Tutorial For Beginners: The String Builder Class
    David Tzemach
    • Dec 13, 2020
    • 2 min

    C# Tutorial For Beginners: The String Builder Class

    The “string builder” class provides a better more efficient way to handle stings in our program. By using this class, we can reduce...
    20
    1
    2
    • Facebook
    • Twitter
    • LinkedIn

    ©2020 by David Tzemach. Proudly created with Wix.com