unable to plugin TESTNG in eclipse ADT - eclipse-plugin

I need to automate android app using Appium automation tool with Eclipse as IDE.
Approach followed:
had set-up java
downloaded appium for windows installation - and set java path
downloaded android SDK for windows - set android home path
opened sdk manager folder and installed all the uninstalled packages.
Started adding plugins to the ECLIPSE that came along with the ADT bundle ( in step 3)
install TESTNG thro ADT help- install new software with the use of link:http://beust.com/eclipse and eclipse re-started after the installation.
When observed the Show View - Other- didnot find TESTNG option
configuarions :
Eclipse Release 4.2.0
TESTNG 6.9.9.201510270734 is in the already installed list of plug-ins, but not able to view in Show View /Run menu.

Related

PyDev plugin not working with Eclipse IDE 2020-03

I have followed the below steps for installing the PyDev plugin -
Used this to install from Eclipse marketplace - https://marketplace.eclipse.org/content/pydev-python-ide-eclipse
Updated my eclipse.ini with -vm argument pointing to the java 8 jdk as below :
-vm
C:\Program Files\Java\jdk1.8.0_241\bin\javaw.exe
Yet, after installation PyDev options don't show up under Windows > Preferences.
Any help is really appreciated.
This solved now, I had to run the eclipse in administrator mode and then perform the installation.

How to get sikuli-script.jar for Mac

I want to integrate sikuli with selenium.Can anyone tell how to get sikuli-script jar for mac pc
To integrate sikuli with selenium, we need to follow the below steps.
First Install Java in MacOS
Download sikuli from https://launchpad.net/sikuli/+download
Double-click on “sikulixsetup-1.1.1.jar” to do
Open Eclipse IDE and create a project

where chromedriver installed by Visual studio nuget

I am newbie and want help please.
I am trying on selenium to automate actions to a mobile webpage. (Don't care about landscape, but just reference to its code) I am referring to this post C# Selenium Mobile Emulation in landscape
ChromeDriverService service = ChromeDriverService.CreateDefaultService(#"C:\chromedriver");
I'm on windows7, using visual studio. I installed chromedriver through nuget package manager. I dont know what to replace on #"C:\chromedriver" as I don't know where chromedriver is on my machine.
Below is what I git diff from package.config, but does not seem help.
+
+
+
+
Any help is appreciated. Thank you very much.
If you look at
https://www.nuget.org/packages/Selenium.WebDriver.ChromeDriver/
Install Chrome Driver (Win32, macOS, and Linux64) for Selenium WebDriver into your Unit Test Project.
"chromedriver(.exe)" is copied to bin folder from package folder when the build process.
NuGet package restoring ready, and no need to commit "chromedriver(.exe)" binary into source code control repository.
So you should use
ChromeDriverService service = ChromeDriverService.CreateDefaultService(#"chromedriver.exe");

Sencha Touch Installation Issues

I just installed Sencha Touch CMD and downloaded the Sencha Touch code and everything. I created a new folder on Mac called MySenchaApp. I then dragged the "touch-2.3.1" folder inside the MySenchaApp folder. I went inside touch-2.3.1 folder and generated my app. The screenshot shows the content inside the "MySenchaApp" folder.
But now I am stuck as I don't know what URL to use to see my website. I went inside the "MySenchaApp" folder and issues the following command to start the server:
sencha web start
It says server is running at localhost:1841. I visited that link but it takes me to some SETUP.html page.
Any ideas
you have to follow these steps:
Download and install this software:
JRE Sencha Cmd requires Java Runtime Environment version 1.7 to
support all functionality, however, most features will work with 1.6
(the minimum supported version).
Sencha Cmd Ruby differs by OS:
Windows: Download Ruby from rubyinstaller.org. Get the .exe file
version of the software and install it.
Mac OS: Ruby is pre-installed. You can test if Ruby is installed
with the Ruby -v command.
Ubuntu: Use sudo apt-get install ruby2.0.0 to download Ruby.
iOS Packaging: Apple Xcode
Android Packaging: Android SDK Tools and Eclipse (optional).
Add the install paths to your PATH environmental variable.
Also read the sencha documentation in setup.html.
If you already had done these things then open command prompt and run command:
cd bin
sencha web start
and then open your browser, type localhost:1841 then press enter.

Timeout while trying to contact RemoteTestNG in Selenium on Mac

I have a TestNG setup running on Eclipse Indigo 20120216-1857 and TestNG for Eclipse v2.0. Dev environment is Mac OSX 10.8.2. Target is a web server running on Ubuntu 12.04.
Error: 'Couldn't contact the RemoteTestNG client. Make sure you don't have an older version of testng.jar on your class path.'
This error only happens when i'm running selenium scripts. not on my other api oriented test cases. I have selenium-server-standalone-2.25.0.jar running.
This same setup is working on my windows 7 dev environment.
This is a brand new eclipse setup and workspace on the mac.
I had met same question. I hope my resolved method can help you.
Method:
Please open Eclipse->Preferences->Then click TestNG->Restore Defaults
root reason: I had use ReportNG instead of testng default report,but after that I forgot to restore config. So when I make a new project,run as TestNG,but not add ReportNG jars, it report error.