How to invoke JavaScripts from Blueprism
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-06-18 08:52 PM
Hi All,
I am not able to spy an particular element, looks like that intern calling JavaScript.
Can anyone help me on how to invoke java scripts from Blue prism with some example?
Thank you,
Sachin B
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-06-18 02:45 PM
If you use Navigate stage there are a couple of JavaScript options, and if you press the blue i button, you'll see an example of each.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
25-07-18 09:52 PM
Please this would be very helpful as I am running into the same issue. I have identified the function and arguments, but the navigate stage for invoke fragment is unable to find the object.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-09-18 10:56 AM
Could anyone please provide an example of invoking JavaScript and what to provide in Function Name and Argument ? thanks.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-02-19 02:38 AM
How to pass ""this""(Java script object) as parameter for the function?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-03-19 05:50 PM
1. Invoke Javascript Fragment
Value:
""function func1(){
document.getElementsByTagName('a')[26].click();
}""
2. Invoke Javascript function
Value : func1()
The javascript object can be passed as you do in normal javascript.
