Is there any way to automate Edge in IE mode using VBA without Selenium drivers. Will it work in same way as how it works in IE. We need to use the same code in VBA.
You may like to check out my reply to a similar post here.
https://stackoverflow.com/a/71994505/9791828
This can be done with some upgrades to windows and a small modification to registry.
Related
While implementing solution for Level 3 Advanced Training on a separate machine, connected via RDP, i had to use the default UiPath Academy Recorder in order to upload my solution.
Here is the tricky part, although the automation completed successfully without the Academy Recorder on, while it was activated it failed (at random iterations) to recognize the download pop-up window element using the on-element appear activity. If the Academy Recorder was launched from the main machine the automation was also completed without errors.
Additional actions tried:
Check if element vanished
Check with On element exist instead
Also used wait for active and wait for visible options
Checked options for Interactive and Completed as well
-Is this related to the fact that the Academy Recorder slows down remote machine?
Thank you in advance,
Konstantinos
I'm quite aware this hasn't been answered in 2+ years (so hopefully you've solved it!)
An alternative way is to use the Wait For Download Activity.
This activity will wait for the file to be completely downloaded before moving to the next step (so be aware of any timeouts if a bigger file)
The activity is included with the UiPath.System.Activities
I am using Selenium grid to scrape thousands of pages since all the pages are heavily populated by Javascript.
I found this tutorial which gave me a pretty good idea of how to set up Selenium grid and run script in parallel. However, my situation is a little different.
(1) I only want one type of browser, like Chrome(or Firefox), but I want to run as many as possible.
(2) To make sure this solution scale, I probably will use some Cloud service where the code will be running in Linux environment.
So here is my question:
Do I have to use TestNG/Junit frame work to run the code in parallel? If I run the code in multiple processes, all making requests to the same hub, will the hub coordinate them out of box?
(1) I only want one type of browser, like Chrome(or Firefox), but I
want to run as many as possible.
You should be running not as many possible, but a heuristic number, that just works for you. The reason being is, running like 30 chrome browsers at a time can give you unpredictable results.
(2) To make sure this solution scale, I probably will use some Cloud
service where the code will be running in Linux environment.
You can look at BrowserStack
Do I have to use TestNG/Junit frame work to run the code in parallel?
Thats upto you. As far as your creating the driver in multiple threads your fine. If your using your own FW, then you can create Thread pool and start creating the driver from each thread pool.
If I run the code in multiple processes, all making requests to the
same hub, will the hub coordinate them out of box?
Yes Selenium Hub will be co-ordinating this for you, out of the box. You no need to worry about anything here.
I am using qtp 10 and version 9 of internet explorer. Whenever i try to record my application it does not generate the code except for moving or resizing the window etc. I tried to convert it to IE 8 from developer tools option and recorded but no results achieved yet. Kindly guide me
You need to run QTP using by admin,
i.e if you run qtp as
I have been trying to figure out how to capture an image withing my Microsoft Access 2007 application using a webcam.
We have been paying for a 3rd party application for this in the past - it is used for taking ID card photos, but the software has grown buggy over time, and I think we should be able to accomplish this ourselves!
All I need is for my Access application to use the webcam to capture the image and save it in a network share. That's it!
I have been trying to hunt down vba code, twain drivers, ActiveX controls... but they all seem to be either deprecated (Access 97/2000) or proprietary! There's got to be some other solution out there though!
You could possibly shell out to another app (using the vba Shell function) that can take a snapshot from the webcam and save it to a file. I found one example:
http://batchloaf.wordpress.com/2011/04/06/snapz-a-command-line-cam-image-grabber/
Good luck.
I am using citrix to access a application remotely. I am not able to use winrunner as it dosent identify objects as application is not installed on working PC. Is there any tool to automate such application
Citrix has a product called EdgeSight. Tevron has a product called CitraTest.
Have you looked at using AutoIt? It has a built-in recorder to record your keystrokes and mouse movements/clicks, which you can then dump into a script and playback. You can also reference certain windows that present and preform special actions against such as hiding them or, adding/removing controls...really just about anything you want. They also have a great community forum see here
Is tevron Citrab Test tool is an open source tool?
Citratest will work for what you are describing, but it is not open source.