C# - Visually detect when desktop browser loaded

Поделиться
HTML-код
  • Опубликовано: 10 сен 2024
  • Demo in C# on visually detecting when a Windows desktop web browser or webpage has completed loading. This is used to automate web tasks without needing to know technical details about the web browser.
    The following namespaces are used:
    System.Threading
    System.Drawing
    System.IO
    .cs methods in video:
    drive.google.c...
    C# Automation Playlist:
    • C# Automation

Комментарии • 6

  • @KhoaLêAnh-CODETOOLMMO
    @KhoaLêAnh-CODETOOLMMO 13 дней назад

    Can you make a series about using mouse and keyboard in c#?
    For example: click the coordinates at this point to that point, press the enter button on the keyboard with code

    • @JFLHV
      @JFLHV  13 дней назад

      Here is the playlist where I demo that in C# using SENDINPUT:
      ruclips.net/p/PLAW4P1Sb_oJbIJIQd8-HPmsVUE6Ez6NFL&si=3rb4bQHNPmHYsaXs

  • @Codelearning.1
    @Codelearning.1 Месяц назад

    Thank you for these explanations❤.
    But I want the project so I can see what else you've done in it, please.

    • @JFLHV
      @JFLHV  Месяц назад

      Thanks. I've been covering it in small increments here and there as I work on it. No plan to post a full project at the time, but will try to answer questions if you have any

    • @Codelearning.1
      @Codelearning.1 Месяц назад

      @@JFLHV What I wanted to know is how I made the program in this project use a script to execute the commands inside it.
      Thank you anyway ❤.

    • @JFLHV
      @JFLHV  Месяц назад

      High level here's what I do
      Engine.cs - executes all actions such as "wait for window", type, leftclick etc
      Step.cs - class to store the action and other parameters such as timeout, execution count from file
      Script.cs - class that has a list of steps, number of loops to execute steps
      MainForm - loads each row into script.steps then goes through each step and calls the proper method in engine.cs