Author: AppRobotic

AppRobotic Process Automation | RPA

AppRobotic With AWS Textract OCR Textractor

Analyze documents with Amazon Textract and AppRobotic to generate output in multiple formats: Get Code  


0

AppRobotic With AWS Textract OCR

Learn to leverage AWS Textract with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With AWS Redshift

Learn to leverage AWS Redshift with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With AWS SageMaker for ML DevOps

Learn to leverage AWS SageMaker with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With Mask RCNN Tensorflow

Learn to leverage Tensorflow Tensorpack with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With AWS IAM AccessAdvisor

Learn to leverage AWS IAM AccessAdvisor permission boundaries with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With SageMaker to Lambda Pipeline

Learn to leverage AWS SageMaker to Lambda Pipeline with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With Textract JSON Response Parsing

Learn to leverage AWS Textract JSON response parser with AppRobotic by using and tweaking code samples: Get Code  


0

AppRobotic With AWS Textract Enhancer

Analyze documents with Amazon Textract enhancer and AppRobotic to generate output in multiple formats: Get Code  


0

Learn Python Programming Visually!

Arguably the best way to learn how to program in Python is by watching your code run after each tweak, and automation macros written in Python enable us to visualize what’s going on! Build and test Python code “blocks” using EduBlocks drag-and-drop at the bottom of this page. Then, paste the resulting Python code output…
Read more


0

How to force webpage to stop loading to click a button?

Sometimes, when automating a webpage with Selenium, a script on the page or another reason prevents the webpage from loading in a timely fashion, preventing Selenium from accessing its elements such as buttons that we’d like to interact with. In the code sample below, we solve this problem by replicating user interaction with the webpage…
Read more


0

How to Start an AppRobotic AWS Marketplace Virtual Machine?

Quick Overview in 5 Steps Subscribe to AppRobotic on the AWS Marketplace (https://aws.amazon.com/marketplace/pp/B00WZTUCPW) page. Launch an AppRobotic EC2 Instance via 1-Click Launch or EC2 Console. We recommend limiting allowed inbound IP addresses for RDP ports to your organization’s IP range by creating a custom security group and selecting it on the Firewall Settings page. Once…
Read more


0

How to Register AppRobotic API for COM

To re-register the API, please run the following line in Command Prompt as an Administrator: “C:\Program Files (x86)\AppMint\AppRobotic\SetupHelper.exe”


0

How to read Excel file, loop through rows, and perform AppRobotic Actions for each row in Python?

How to read Excel file, loop through rows, and perform certain AppRobotic Action steps for each row in Python? Let’s say that we have 2 URLs in an Excel sheet (Sheet1). Cell A1 has a URL such as google.com and cell A2 also has a URL such as google.com. Below, we open a web browser,…
Read more


0

How do I run Chrome with Selenium WebDriver in Python?

To launch Chrome with Selenium WebDriver, ensure that the path to your ChromeDriver binary download is listed in the Windows PATH environment variable. Alternatively, you can specify the path to ChromeDriver directly during runtime per the example below: Python Code: import win32com.client x = win32com.client.Dispatch(“AppRobotic.API”) import os from selenium import webdriver # assign ChromeDriver path…
Read more


0

How do I find a particular link on a page with Selenium and Python?

When searching for a particular link on a page, it’s easy to store the link elements in a List, and then loop through it until you find a match: Python Code import win32com.client x = win32com.client.Dispatch(“AppRobotic.API”) from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.common.by import By # navigate to Yahoo driver = webdriver.Firefox()…
Read more


0

How can I fix the “win32com.client” error?

The “win32com.client” error is due to a new Python version being installed without win32com, such as after an upgrade. To fix this, please run the following commands in the folder of the new Python installation via Command Prompt as Administrator, from the newly installed Python directory (do this for both the 32-bit and 64-bit Python…
Read more


0

How to RPA – Automating a Desktop App

How to Automate a Desktop Application To automate any accessible application on Windows, simply repeat Steps 1-4 in this tutorial to first open the app you’d like to automate, and then find and act on each UI Item, while tweaking the Wait delays in between Actions after each test automation run iteration. Use the AppRobotic…
Read more


0