Tuesday, 24 November 2015
Friday, 17 July 2015
Visual Studio .Net Webdriver
Create a new visual studio project
follow this from menu : templates -- c# -- Test -- Unit Project
You should see that below
Add selenium references to project
and run it :)
follow this from menu : templates -- c# -- Test -- Unit Project
You should see that below
Add selenium references to project
build project
Etiketler:
Visual Studio Webdriver
Tuesday, 16 June 2015
SOAP UI TestRunner
import com.eviware.soapui.tools.SoapUITestCaseRunner;
public class SoapUIRunner {
private final static String SOAP_PROJECT_XML = "/src/resources/test-soapui-project_convert1.xml";
public void testRunner() throws Exception
{
SoapUITestCaseRunner runner = new SoapUITestCaseRunner();
runner.setProjectFile(SOAP_PROJECT_XML);
runner.run();
}
}
Etiketler:
SOAPUI
Tuesday, 9 June 2015
Tuesday, 2 June 2015
Monday, 1 June 2015
org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after
solution : get new webdriver libraries here then will be resolved
Etiketler:
Webdriver
Monday, 18 May 2015
Appium Set Mac System Variables
Go to terminal
- touch ~/.bash_profile
- ~/.bash_profile
Set the Java and Android SDK paths
Add the following paths into the file:
- export JAVA_HOME=path/to/the/java/home
- export ANDROID_HOME=path/to/the/android/sdk
- export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
Monday, 11 May 2015
Appium Problem
If you get below error message :
info: [debug] Error: Could not find a device to launch. You requested 'iPhone 6 (0249BE06-CD62-4873-ABBD-10849C84C13D) (8.1 Simulator)', but the available devices were: ["iPhone 6 (8.1 Simulator) [0249BE06-CD62-4873-ABBD-10849C84C13D]"]
Solution :
Appium GUI from in list "'iPhone 6 (0249BE06-CD62-4873-ABBD-10849C84C13D) (8.1 Simulator)" remove all text except "iPhone 6" and try again.
info: [debug] Error: Could not find a device to launch. You requested 'iPhone 6 (0249BE06-CD62-4873-ABBD-10849C84C13D) (8.1 Simulator)', but the available devices were: ["iPhone 6 (8.1 Simulator) [0249BE06-CD62-4873-ABBD-10849C84C13D]"]
Solution :
Appium GUI from in list "'iPhone 6 (0249BE06-CD62-4873-ABBD-10849C84C13D) (8.1 Simulator)" remove all text except "iPhone 6" and try again.
Etiketler:
Appium
Saturday, 24 January 2015
Webdriver - System Properties
webdriver usage:
System.setProperty("webdriver.chrome.driver", "D:\\chromedriver_win32_2.3\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get("http://www.google.com");
Etiketler:
Webdriver
Subscribe to:
Posts (Atom)