Ranorex 5.0.3 Unable to recognize objects on AS2 Application - actionscript-2

I am currently trying to Automate an AS2 application through Ranorex 5.0.3 but I'm unable to recognize the objects through Ranorex Spy and I'm getting a popup of Ranorex technology limitation. I have all the Ranorex plugins installed for my browser. Is it possible to automate AS2 applications through Ranorex ?
Thanks,
Mudit

Try to reinstall all instrumentation once again and download latest updates for Windows.
I have noticed instrumentation problems after upgrade to 5 version so need to reinstall all instrumentation.

Related

power automate desktop not connecting with browser extension

I have installed the latest versions of power automate desktop and browser extension, and I'm using the Microsoft Edge browser, before the latest update come, it worked perfectly, but after the update it not working.
every time I run the flow it shows this error:
"Failed to assume control of Microsoft Edge (Communication with browser failed. Try reloading extension)."
With the new version you also have to make sure developer tools are enabled in your browser.
See the information here about manifest v3
When I updated to the latest version of PAD I also had major issues lucky I was able to roll back to the previous version.
I'm aware this might not solve your issue, but the only way I could get mine working again was to uninstall 2.27 and reinstall 2.26, lucky I had the install for 2.26 as I couldn't find a previous version download link on the MS website anywhere.

Unable to launch URL in edge browser (using replit platform)- Selenium Python

I tried to use replit online platform for web scraping using selenium in Edge browser. replit automatically install selenium 4.1.3 but I couldn't find msedge-selenium-tools to support this version.
How can I install selenium (3.141) to support msedge-selenium-tools?
Any help will be highly appreciated.
Thank You
Bibek
I don't know much about this online IDE, but I did some testing and found that it seems to be able to control the version of the referenced package via a configuration in the pyproject.toml file.
First, uninstall selenium 4.1.3 in installed Packages. When installing edge-selenium-tools package, you will find that it bundles selenium 3.141 installed with edge-selenium-tools. Second, add this line in pyproject.toml file.
selenium = "^3.141.0"
Something like this:
In addition, for more questions related to IDE replit, I suggest you post your questions in its community, I think there may be someone with more relevant experience who can answer your questions.

How can I test a Crosswalk application with BrowserStack?

At our company, we maintain a legacy Android application which uses Crosswalk to embed a web view. We would like to implement automated end-to-end tests for this app using Appium and ChromeDriver.
Unfortunately, the version of Chrome used by Crosswalk is modified in such a way that ChromeDriver cannot connect to it. This is a known issue, and the recommended workaround is to use a custom patched version of ChromeDriver instead.
This solution works for running tests locally. But BrowserStack doesn't seem to allow for supplying a custom build of ChromeDriver. I can choose from a set list of versions, but that won't help, as none of those versions have the Crosswalk patch.
Is there a way to make this work with BrowserStack?
I had used BrowserStack for my native app tests as well. Currently, they do not provide any custom capability to select the ChromeDriver version.

Selenium not working in firefox 23.0.1 (Mac and Windows)

I have a client who had a script working and now stopped working. I run it in my computer and it works (i runned it on Linux and Windows). My client runned it on Mac and Windows.
I am new to Selenium, but the part of the code that crashes is where Selenium takes place, it gets the Firefox to open but not load the page. I think it migth be a problem with the webDriver of Selenium that must be updated.
I told him to install pip in his Mac and uninstall Selenium and reinstall it, is this how it is done in OS machines? Is there any issue related to my problem?
Thanks
It would be helpful if you had specify Selenium version and also which browser are you using and it's version too. But the behavior you described seems to be caused by having newer version of browser which the Selenium version you using doesn't support. So upgrading to newest version of Selenium (2.35) will likely make this problem disappear.

Selenium WebDriver: Could not load file or assembly 'Newtonsoft.Json Version=4.0.2.0'

Selenium's webdriver gives me that error when trying to use the Chrome or IE driver.
I have got Selenium via Nuget, so it should be giving me the correct libraries. However, it seems to want a reference to Newtonsoft.Json 4.0.2.0 rather than 4.0.3 which is the one currently inside the NuGet package.
How do I get round this issue?
UPDATE
I got this working, in part trying to fix another problem. See my other post:
Selenium WebDriver - FirefoxDriver error: Failed to start up socket within 45000
It's the Nuget package. Selenium is relatively new to Nuget, and the team has been having problems building a package that can be used easily. The primary .NET developer has said that the 2.8.x Nuget package will be better. That's due out sometime this week.
you need to use x86 not ANY CPU, then will work. Your project is set to ANY CPU. Change it to x86.