Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Robotic Process Automation with Blue Prism Quick Start Guide

You're reading from   Robotic Process Automation with Blue Prism Quick Start Guide Create software robots and automate business processes

Arrow left icon
Product type Paperback
Published in Nov 2018
Publisher Packt
ISBN-13 9781789610444
Length 232 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Lim Mei Ying Lim Mei Ying
Author Profile Icon Lim Mei Ying
Lim Mei Ying
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. The Case for Robotic Process Automation FREE CHAPTER 2. Building the First Blue Prism Process 3. Pages, Data Items, Blocks, Collections, and Loops 4. Actions, Decisions, Choices, and Calculations 5. Implementing Business Objects 6. Spying Elements 7. Write, Wait, and Read 8. Working with Excel 9. Sending and Receiving Emails 10. Control Room and Work Queues 11. Exception Handling 12. Other Books You May Enjoy

How does spying work?

A robot does not have real eyes to see what is on the screen. How then is it able to look for elements that it needs to interact with? Here's how it does it for HTML pages:

  1. It scans through the page by looking at the HTML source code. A web page is made up of many HTML components. Here is an example of a page that contains a textbox and a button:
     <HTML>
<BODY>
Search: <input type= "text" id= "twotabsearchtextbox" />
<input type="submit" value="Go" />
</BODY>
</HTML>
  1. The robot breaks the HTML down into elements, such as textboxes, labels, buttons, and links. Each element is defined by a markup tag. For example, a textbox is an <INPUT/> tag, while a hyperlink is an <A/>.
    Let's take the preceding code, for example. The robot sees...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image