Pseudo Code Generator

Automated Edge Course Login and Document Download

This pseudo code automates logging into an educational website using Microsoft Edge, accessing a course module, and downloading a specific document. It details each step clearly for executing automated actions.


Empty image or helper icon

Prompt

Open Microsoft Edge 

Type on the address bar elms.sti.edu 

Click on the log in button on the website 

Type in your email address and password 

Find the course and click Computer Programming 1 

Once you’re in the modules find the Basics of Programming 

Click the module  

Find and click 01 Handout 1.pdf 

On your keyboard press ctrl + s 

Then save the handout on the documents folder

Answer

Pseudo Code for Automated Actions in Microsoft Edge

Purpose

This pseudo code outlines the sequential steps to be executed for logging in to a specific educational website, accessing a course module, and saving a document.

Pseudo Code

BEGIN

    // Step 1: Open Microsoft Edge
    OPEN Microsoft Edge

    // Step 2: Navigate to the website
    SET addressBar = "elms.sti.edu"
    TYPE addressBar INTO address bar

    // Step 3: Click the log in button
    FIND "Log In Button" ON webpage
    CLICK "Log In Button"

    // Step 4: Input email and password
    SET email = "your_email@example.com"
    SET password = "your_password"
    
    TYPE email INTO "Email Input Field"
    TYPE password INTO "Password Input Field"

    // Step 5: Find and click on the Computer Programming 1 course
    FIND "Computer Programming 1" ON courses list
    CLICK "Computer Programming 1"

    // Step 6: Access the Basics of Programming module
    FIND "Basics of Programming" MODULE
    CLICK "Basics of Programming"

    // Step 7: Download the handout document
    FIND "01 Handout 1.pdf"
    CLICK "01 Handout 1.pdf"

    // Step 8: Save the document
    PRESS "CTRL + S" ON keyboard

    // Step 9: Save in documents folder
    SET saveLocation = "Documents"
    SELECT saveLocation AS "Save Directory"
    CONFIRM save

END

Explanation of Main Points:

  • Open Microsoft Edge: Initiates the browser.
  • Type address: Inputs the URL into the address bar for navigation.
  • Log in button interaction: Triggers the login process by clicking the designated button.
  • Credential input: Enters user email and password for access.
  • Course navigation: Locates and accesses 'Computer Programming 1'.
  • Module selection: Finds and enters the 'Basics of Programming' module.
  • Document download: Identifies and selects the target PDF for download.
  • File saving process: Activates the save command and specifies the location for saving the file.

This structured approach ensures clarity in understanding each step of the automation process for logging into the website and managing the document download.

Create your Thread using our flexible tools, share it with friends and colleagues.

Your current query will become the main foundation for the thread, which you can expand with other tools presented on our platform. We will help you choose tools so that your thread is structured and logically built.

Description

This pseudo code automates logging into an educational website using Microsoft Edge, accessing a course module, and downloading a specific document. It details each step clearly for executing automated actions.