Selendroid SetupError - selenium-webdriver

Am getting below error while setup.
I have setup my ANDRIOD_HOME variable too. But still getting the below error.
Can anyone help me on this:
java.lang.RuntimeException: io.selendroid.exceptions.SelendroidException: Enviro
nment variable 'ANDROID_HOME' was not found!

Please setup Android sdk correctly. If you don't know how to do it, have a look at this guide: http://spring.io/guides/gs/android/

Please have a look at https://github.com/selendroid/selendroid/issues/198
I got these issues resolved.
Do vote the answer after you get your issue resolved.

ANDROID_HOME variable should point to the SDK:
set ANDROID_HOME=C:\${installation location}\SDK
set PATH=%PATH%;%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools
[Try setting path through the command prompt before running selendroid]
(This is only for Windows. For other OS you can check this link:
http://spring.io/guides/gs/android/)

Related

Getting "Invalid command 'Proxy_....'" but all the proxy modules show "already enabled"

I'm working on setting up SearXNG using apache....ugh....btw, if anybody has any good instructions on this (besides the developer's website) I'd be very grateful.
In any case, after I configure the .conf file and restart apache2, it fails with errors saying this proxy module or that is an invalid command. From all the forums I've looked at, the suggestion was to a2enmod the modules it is complaining about, plus a few others. I've done that but apache keeps complaining about them.
I've not found a thread yet that speaks of this particular issue. Any ideas?
Thanks

RNFB_ANDROID_PERMISSIONS=true command showing error on windows

installing react-native-fetch-blob was successful and linking it is also done. But when i run 'RNFB_ANDROID_PERMISSIONS=true' command it show command not found. how can i fix it
Please try following solution, might be work for you.
'RNFB_ANDROID_PERMISSIONS' is not recognized

Prover9 installation error on Windows

I tried to install Prover9 on my Windows system. But after completion of the installation procedure when it is supposed to launch the application. I'm getting the following error:
Prover9error
When I tried to search for that log file, there was no such file present at that location.
Please help if anyone has come across something like this and knows how to solve it.
[P.S.: I could find this error on the internet.]
Thanks!
i also had a problem installing the prover9 due to the Missing MSVCP71.dll however i have overcome it by get the prover9-Mace-version4 installed. to solve the error follow this instruction
"If you are using Windows 7 32-bit then you need to put both dll files inside Windows/System32 folder as shown in the screenshot below."
If you are using Windows 7 64-bit then you need to put both dll files inside the Windows/SysWOW64 folder as shown in the screenshot below.
hope it solve ur problem

Php-debug on atom doesn't work

Is anyone has done successfully on php debug integration on atom?
I tried to follow the steps from this link and from this
but this part
If everything worked correctly, you can now use the various
buttons/commands to step through the script.
doesn't work,
I am using xampp, bundle with php7, the problem, it doesn't work.
Does anyone done this before, can explain why?
of the instruction from php-debug
I tried the above answer, but kept getting a connection timeout after 200ms.
Re-installing Atom worked for me to fix the problem.
This is an old question but as I had the same problem it might be useful for someone.
In my case I needed to change the variable in the php.ini file
xdebug.remote_log=C:\xampp\htdocs\log\xdebug.log
This way you can see in the log if xdebug is working and if you are in error you can see the error
After analyzing the error, I changed the variables
xdebug.remote_host=10.20.200.100 #Use your IP
xdebug.remote_connect_back=0
I added it too
xdebug.idekey=xdebug-atom
It was as follows
zend_extension = C:\xampp\php\ext\php_xdebug-2.5.4-5.6-vc11.dll
xdebug.remote_enable=1
xdebug.remote_host=10.20.200.100 #Use your IP
xdebug.remote_connect_back=0
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart=false
xdebug.idekey=xdebug-atom
xdebug.remote_log=C:\xampp\htdocs\log\xdebug.log
In the php-debug configuration on the Atom
"php-debug":
GutterBreakpointToggle: false
PathMaps: [
"\"C:\\xampp\\htdocs\\myproject;C:\\xampp\\htdocs\\myproject\""
]
ServerAddress: "10.20.200.100" <--Use your IP
These steps worked for me.

"Your GStreamer installation is missing a plug-in." (GstURIDecodeBin)

I have: gstreamer-sdk, gstreamer-ffmpeg, gstreamer-plugins-good, bad, and ugly. I googled everywhere for this error and have found nothing relevant. I'm going a little nuts trying to figure out this error:
Error received from element decodebin20: Your GStreamer installation is missing a plug-in.
Debugging information: gstdecodebin2.c(3576): gst_decode_bin_expose (): /GstPlayBin2:playbin20/GstURIDecodeBin:uridecodebin0/GstDecodeBin2:decodebin20:
no suitable plugins found
It throws when I run my gstreamer program. Any ideas on why?
You may not be missing any plugins at all.
This error can be a result of just an unlinked pipeline.
Playbin2(decodebin2) got some changes that made it unable to automatically link up some pipelines that formally worked, for example transcoding a decoder to an encoder. In my case, explicitly adding the ffdec_h264 that it used to add automatically fixed it.
Relying on the Playbin2 can be very frustrating when it does not work. Using the setup below, you can create a .png diagram of the pipeline in various phases of construction. It's very helpful in finding why it isn't linking up.
export GST_DEBUG_DUMP_DOT_DIR=~/gstdump
for f in $GST_DEBUG_DUMP_DOT_DIR/*.dot ; do dot -T png $f >$f.png; done
This tool also lets you learn from it how to link up pipelines, and replace them with explicit ones that are easier to debug and less likely to break.
In Fedora, I resolved this issue removing gstreamer1-vaapi.x86_64:
sudo yum remove gstreamer1-vaapi.x86_64
uridecodebin is part of the "base" plugin set, so make sure you have gstreamer-plugins-base.
Another thing to look into is your LD_LIBRARY_PATH and GST_PLUGIN_PATH. If they point to a different GStreamer installation, it could cause problems like this. Also, if you didn't install GStreamer with a package manager, you may need to set your LD_LIBRARY_PATH to point to it (or better yet, install it with a package manager).
Pleas try to use gst-inspect command to find out if environment is correctly setup.
use gst-launch -v playbin2 uri = "your_uri_here" to find more information to trace this issue.

Resources