Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Robotic Process Automation with Blue Prism Quick Start Guide

You're reading from  Robotic Process Automation with Blue Prism Quick Start Guide

Product type Book
Published in Nov 2018
Publisher Packt
ISBN-13 9781789610444
Pages 232 pages
Edition 1st Edition
Languages
Author (1):
Lim Mei Ying Lim Mei Ying
Profile icon Lim Mei Ying

Table of Contents (13) Chapters

Preface 1. The Case for Robotic Process Automation 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 $15.99/month. Cancel anytime}