filmov
tv
Autoit Tutorials Part 16 Calculator Automation Project

Показать описание
Reference Book- Autoit scripting for beginners
Title: Autoit Tutorials Part 16 Calculator Automation Project
In this video you'll learn how to automate window calculator using autoit script.
Project Requirements:
1) Launch the calculator Application
2) Verify the calculator is launched
3) Press the button 5
4) Press the button +
5) Press the button 6
6) Press the button =
7) Close the calculator application
Source Code:
;Launch calc
;Wait for 2 seconds
Sleep(2000)
;Check the calculator is launched or not
If WinExists("Calculator","") Then
;Press button 5
ControlClick("Calculator","",135)
Sleep(2000)
;Press button +
ControlClick("Calculator","",93)
Sleep(2000)
;Press button 6
ControlClick("Calculator","",136)
Sleep(2000)
;Press button =
ControlClick("Calculator","",121)
Sleep(2000)
;Close calc
WinClose("Calculator","")
EndIf
`
Title: Autoit Tutorials Part 16 Calculator Automation Project
In this video you'll learn how to automate window calculator using autoit script.
Project Requirements:
1) Launch the calculator Application
2) Verify the calculator is launched
3) Press the button 5
4) Press the button +
5) Press the button 6
6) Press the button =
7) Close the calculator application
Source Code:
;Launch calc
;Wait for 2 seconds
Sleep(2000)
;Check the calculator is launched or not
If WinExists("Calculator","") Then
;Press button 5
ControlClick("Calculator","",135)
Sleep(2000)
;Press button +
ControlClick("Calculator","",93)
Sleep(2000)
;Press button 6
ControlClick("Calculator","",136)
Sleep(2000)
;Press button =
ControlClick("Calculator","",121)
Sleep(2000)
;Close calc
WinClose("Calculator","")
EndIf
`
Autoit Tutorials Part 16 Calculator Automation Project
Calculator
Autoit Tutorial Nr. 12 Taschenrechner mit Autoit [deutsch]
Autoit Tutorials Part 6 My first script
Java and AutoIt - Automating the calculator application using autoitx4java
Use AutoIt to Automation Test
How to use AutoIt in VBA
SAP Automation with AutoIt(No RPA)
Autoit Tutorials Part 5 Defining comments in autoit
Autoit Tutorials Part 15 Five Important Window Management Functions
Autoit Tutorials Part 2 Record and Play back using AU3Recorder
123Autoit UI updated tutorial
How to automate and develop applications using AutoIT
Desktop QA Automation - AutoIT
123AutoIt Monster Hunter Explorer Tutorial [Check Control]
AutoIt Tutorial 7: Notepad Automation Part 2
AutoIt Demonstration
AutoIT Subtitle Translation Project
Autoit Tutorials Part 1 Overview about autoit and installation setup
Autoit Tutorials Part 7 Loops
how to set up autoit
File Miner - QuickCode - AutoIT
Autoit Tutorials Part 9 If Else Statements- Theory
AutoIt Tutorial 8: Notepad Automation Part 3
Комментарии