Register
Log in
Home
App Stores
Public App Store
Private App Store
Apps Shared With Me
Solution Stores
Public Solutions
Private Solutions
Solutions Shared With Me
My Web Apps
My Web Bots
My Web Bots For Sharing
Start/Stop Apps Remotely
Documentation
What is Easybots?
Solution Tutorials
1. My Web Bots & USB Cam
Developer Tutorials
1. My First Bot
2. Triggers
3. Passing Data
4. Data Models
5. GitHub (on github.com)
6. Dev Cheat Sheet
Blog
Community
FAQ
Blog
Pricing
×
Use Easybots Studio to download and use the bots from this app
Add To Favorites
App
Html Utilities
Free
Description
Bots that know how to work with HTML documents. Get HTML elements by selector, get attributes and attribute's value & more...
Author
Martin N.1
Version
2.1.25.0
Available bots in this app
HtmlBot
Actions
GetPageContent
Inputs
URL : String
timeToWaitInMs : Int32
Returns
Content : String
SelectFirstByXPath
Inputs
html : String
xPath : String
Returns
htmlElement : String
SelectAllByXPath
Inputs
html : String
xPath : String
Returns
arrayOfHtmlElements : String[]
GetFirstBySelector
Inputs
html : String
selectorQuery : String
Returns
htmlElement : String
GetAllBySelector
Inputs
html : String
selectorQuery : String
Returns
htmlElements : String[]
GetAttributes
Inputs
htmlElement : String
Returns
htmlAttributes : String[]
GetChildrenByXPath
Inputs
html : String
xPath : String
Returns
children : String[]
ContainsAttribute
Inputs
htmlElement : String
htmlAttribute : String
htmlAttributeValue : String
Returns
isContained : Boolean
GetInnerText
Inputs
htmlElement : String
Returns
innerText : String
GetAttributeValue
Inputs
htmlElement : String
attribute : String
Returns
attributeValue : String
ExtractTextFromHTML
Inputs
html : String
Returns
text : String