I am using citrix vdi to read an element on webpage. It is able to highlight and read the value in open vdi but in close vdi layout of webpage messes up and element i need went out of bound/off screen from webpage. I have tried minimize and maximize before reading value but invain. I also tried html mode and AA still cannot read it. In html mode i kept only path attribute for element, value remains exactly same on close and open vdi. The only difference i have notice is width of div in which element resides. Div width changes in open 1921and close 1203 which i assume push element out of screen bounds. Any help will be appreciated.
Browser Based Application on IE a spying issue on blue prism. Element gets off screen and bp can't highlight
1k Views Asked by user1155921 At
1
There are 1 best solutions below
Related Questions in OBJECT
- How to solve compiler error: no matching function for call to 'dmhFS::dmhFS()' in my case?
- Troubleshooting object instantiation based on role in PHP app
- Best Way to Convert js object
- Find all array keys which includes 'id' as prefix and rename them as just 'id'
- Different return value
- Data structure for a console menu in Node.js with nested options that can be navigated backwards
- Invalid constant value when passing custom object as a screen parameter in flutter
- Why are some python objects necessarily unique?
- How to pass a template parameter to an object without calling its member functions?
- How to do deep copy an object without using recursion and json methods
- What should I use between object class and Hilt @Singleton class. in Android
- How can I convert an arbitrarily deep nested object to a similarly nested Map?
- Object object error when trying to save to local storage and display
- == and Equals for Tuple<object>
- Mooc.fi Java 1 -Part07_07 Recipes
Related Questions in FULLSCREEN
- In fedora Linux, Waydroid opens in fullscreen mode, but in gnome the top panel is not hidden
- How can I make 'emacsclient' open in native fullscreen every time I launch it from the terminal in macOS?
- Custom Controls Not Working in Fullscreen Mode for React Native Video Player
- Does auto full screen function work on mouse hower?
- Scroll to slide in full page
- how to force landscape mode when iframe video in fullscreen
- Set Raspberry Pi Qt application to full screen mode
- python check if a window/app is in full screen in a multi-monitor setup
- Unable to Maintain Fullscreen Mode Across Page Changes or Refreshes
- Keep activity in immersive mode
- visionOS WKWebView FullScreen bug
- flutter full screen using SystemChrome.setEnabledSystemUIMode(SystemUiMode.immersiveSticky); not working correctly
- How to disable full screen on F in keyboard in ReactPlayer?
- Uno Platform - How to create a full screen Windows Desktop application
- In ReactJS, how to request/exit FullScreen while also handling the FullScreen events to update the UI?
Related Questions in BLUEPRISM
- Issue with Application Modeller - Unable to Select "Windows Application" Option
- How to integrating Microsoft Teams with Blue Prism to automate message through Teams?
- BluePrism - Move or upload a mail from one email Inbox to a different one
- Dynamically changing variable in XPath within Application Modeller
- Triggering a Blue Prism process from a button click in a web application page
- How can I call a Stored Procedure using Blue Prism?
- Blue Prism Genesys api
- Power builder 2022 and Blueprism Active Accessibility Compatibility Issue
- How to send ctrl shift f9 using global send keys in Blue Prism?
- Missing data from collection when looping
- SAP VB.NET interop code to read a GuiTableControl object into a Blue Prism collection?
- How can I prevent existing categories from disappearing when I add a new category to an email item using Exchange Web Services in C#?
- Hiding data from logs in Blue Prism
- Intermittently get Microsoft login prompt when trying to open Excel file with BluePrism
- Manipulate a COM object across multiple functions in powershell
Related Questions in HTML-MODE
- How to switch copy mode between text and html with React
- Browser Based Application on IE a spying issue on blue prism. Element gets off screen and bp can't highlight
- Wrap html tag around next word with one key in emacs
- Filenames completion in html-mode
- Close HTML tags as soon as one opens them
- How can I stop Emacs from starting a browser when I save a file in HTML mode?
- Aquamacs web-mode
- How do I set the colour of a custom tag in html-mode
- Silverstripe template, html-mode
- cant tab what ever i want in emacs indentation mode
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
When working with Blue Prism don’t rely on initial attribute set. You need to choose as few attributes as possible to uniquely identify element. You should always untick attributes that are empty or it’s value it’s “Self” (for example Element ID attribute tends to have such value which doesn’t mean anything). Generally, attributes connected with elements position on the screen or its size are not helpful, because it may be easily affected. When working with HTML spy mode your elements don’t need to be visible on screen to interact with them (unless you are using surface automation techniques), HTML elements don’t have any Visible or Screen Visible attributes. Try to use attributes like:
Path attribute is not always the best choice as it might change because web page is dynamic or application update mess up the layout. If you won’t be able to identify element any other way, make sure you use Path as Dynamic match type & store it as environmental variable, so it could be easily adjusted if needed. If you have problems reading value using “Get Current Value”, try “Get HTML Attribute” in Read stage options & try “Value” or “Title” as an Input.