Tosca Error Execution " multiple Firefox windows are not support at the moment" - error-handling

Can someone answer my question about tosca commander? Got an error message while running scratchbook.

I had the same problem yesterday. I found out I had enabled the same "Tosca Automation Extension for Microsoft Edge" twice, probably the administrator of my remote desktop added the second extension.
Hope it could help you.
Christy

Related

Pestphp fails to run tests

I just installed the version 1.21 of pestphp/pest for a small php library.
Installations works until I try running ./vendor/bin/pest
I keep getting this error: Exclusive locks are not supported for this stream
Research on this error has proven unsuccessful as I could not find a similar case.
Please let me know if you've experienced this before and how you fixed it.
Thanks!
I have figured out the issue.
I was running the application from the htdocs of the vm version of xampp running on my laptop.
Taking the project out of here into another directory solved this issue.
Hope this saves someone else some time.

How to fix "spawn UNKNOWN" Error in Electron?

I built an Electron app on 64-bit windows machine and it runs well on other machines.
But today, I ran it on my 32-bit atom processor windows machine and I got the following error message.
I tried npm update but it doesn't work too.
the error message is,
How can I fix it? : (
Thank you for reading my question.
You don't have access rights. Try running as an administrator or change permissions.
Also you may try checking, if antivirus has blocked this process.

how to use chrome extension with Tosca?

I am not able to use Tosca extension for Chrome. As soon as i install the extension and try to run the scan using Tosca, it displays the below message
and as I press the Yes button it displays the following error
not able to resolve the issue. Also the extension disappears from the browser and I am forced to install it again.
Thanks
I would urge you to get in contact with Tricentis Support (https://support.tricentis.com/).
I expect they will be able to help you better than this community in that particular case.
I resolved the problem by updating the chrome to latest version. Its working fine now after updating the browser and restarting
Install the Tosca Automation Extension for Chrome. You could navigate to chrome://extensions/ and download and install the extension from her. For the exact name, you can refer to the image below.

Safari downloading older version of Silverlight (Getting SL 4 instead of SL 5)

I have a website using Silverlight 5, when an user from Mac wants to visit the site using Safari (because with FF and Chrome it do not work correctly), Safari shows a message: "You need to install Silverlight please click here", when the user clicks on it, Safari starts to download Silverlight 4. This means that the user have to unistall that version and go manualy to http://www.microsoft.com/silverlight/ and download the correct version (Silverlight 5). How can I solve this problem?, because it is happening for all the mac users.
Here is my question formerly I asked. Its closed and down voted. :)
https://stackoverflow.com/q/14746701/413032
Anyway Thank You # jv42 working with firefox solved my issue.
I'm not sure if my question was is more suitable for SuperUser or StackOverFlow.
It doesn't matter, It solved. Hope this help someone else.
Its very strange firefox also download same file. But when you install firefox downloaded file problem goes away ! Weird !

Selenium not working with Firefox 3.x on linux

I am using selenium-server , selenium rc for UI testing in my application . My dev box is Windows with FireFox 3.5 and every thing is running fine and cool. But when i try to run selenium tests on my build server which is a linux box , i get this error
Caution: '/usr/bin/firefox': file is a script file, not a real executable. The browser environment is no longer fully under RC control
basically the selenium-rc is not able to find the firefox executable on linux(actually its a .sh file here), which is present in the case of Windows .
Has anyone faced this error before. Please let me know for any pointers.
Thanks for any help
~Pratik
Thanks!
Pratik
This is occurring because Selenium wants to start the FireFox binary directly, rather than delegate to the normal launch script. Before checking for "firefox" (which is a script on many installations), it checks for "firefox-bin". You can circumvent this problem by creating a link named "firefox-bin" that points directly at your desired version of the firefox binary.
This is described under "Ubuntu fix" (though it actually applies to other Linux'es as well) in the Cucumber Wiki at:
https://github.com/cucumber/cucumber/wiki/Setting-up-Selenium/612fae3f39528be39594d145ec12a4747855e030
Hey, I have Selenium running on Karmic with no issues. I can't quite remember how I did it, but I think it was a case of grabbing a more recent version ot the selenium-rc-serve.jar.
I also remember looking at this post: http://tero.tilus.net/rutinat/2009/08/18/cucumber-running-selenium-on-debian-lenny/
Hope something there points you in the right direction!