How can we use attribute name and value in finding element
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
17-04-18 12:51 PM
This is my xpath :
//div[@id='noSearchBody' and @style='display: block;']
I want to use display attribute for finding the element
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
18-04-18 10:49 PM
Can you not just tick the attribute in Application Modeller? And if you don't want to hardcode a value, mark the attribute as Dynamic supply the value from the diagram.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-04-18 06:53 AM
Display isn't an element attribute though - it's a CSS property.
Blue Prism doesn't currently support using CSS selectors, something you can do is inject javascript into the page to manipulate the element (something I do a lot is inject the Sizzle library if jQuery not used on the page to make selecting elements easier).
Or, seeing as how your element has an id, just use that in the Application Modeller?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-04-18 05:32 PM
John -
I will try to explain my scenario
Name | version
Blue prism | 6.2
I want to find the value depending on the name because the table appears in different section of the page for each entry
This we can do that in Xpath using text() function
//td[text()='Name']//..//..//tr[2]/td[3]
So can we do this in blue prism?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-04-18 05:33 PM
David -
Is there any document where I can get the reference how to do this objective?
Blue Prism doesn't currently support using CSS selectors, something you can do is inject javascript into the page to manipulate the element (something I do a lot is inject the Sizzle library if jQuery not used on the page to make selecting elements easier).
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-04-18 09:03 PM
A general description of how to use JavaScript with Blue Prism can be found on the Browser Automation Guide:
https://portal.blueprism.com/system/files/2017-09/Browser%20Automation%20Guide_0.pdf
