package Ccwp;
import org.openqa.selenium.By;
//import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.Navigation;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class New_address_qq {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver","E:\\autotest\\chromedriver_win3224\\chromedriver.exe");
//System.setProperty("webdriver.chrome.driver","E:\\GoogleChrome39/GoogleChrome39/GoogleChromePortable.exe");
WebDriver driver1=new ChromeDriver();
// JavascriptExecutor jse=(JavascriptExecutor) driver1;
Navigation navigation1=driver1.navigate();
navigation1.to("http://ccwp.sit.sf-express.com/service/setLogin?openId=BCED0272E8303D139EE9879BDAA56B72&phone=13692212840&channel=3");
try{Thread.sleep(4000);
}catch(InterruptedException e){e.printStackTrace();}
navigation1.to("http://ccwp.sit.sf-express.com/page/tencent/index.html");
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
driver1.manage().window().maximize();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
//点击地址簿
WebElement address=driver1.findElement(By.xpath("//*[@id='wrapper']/section[3]/ul[1]/li[1]/a/span"));
address.click();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
WebElement new_address=driver1.findElement(By.xpath("//*[@id='wrapper']/section[2]/ul/li/div/a"));
new_address.click();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
WebElement name=driver1.findElement(By.xpath("//*[@id='userName']"));
name.sendKeys("张小丽手q");
WebElement mobile_number=driver1.findElement(By.xpath("//*[@id='telePhone']"));
mobile_number.sendKeys("13692282840");
WebElement city_name_button=driver1.findElement(By.xpath("//*[@id='destination']"));
city_name_button.click();
try{Thread.sleep(2000);
}catch(InterruptedException e){e.printStackTrace();}
//选择上海市
WebElement shanghai=driver1.findElement(By.xpath("//*[@id='hotList']/li[3]/a"));
shanghai.click();
try{Thread.sleep(1000);
}catch(InterruptedException e){e.printStackTrace();}
//选择金山区
WebElement jinshanqu=driver1.findElement(By.xpath("//*[@id='areaList']/li[13]/a"));
jinshanqu.click();
try{Thread.sleep(1000);
}catch(InterruptedException e){e.printStackTrace();}
WebElement tail_address=driver1.findElement(By.xpath("//*[@id='detailAdress']"));
tail_address.sendKeys("上海顺丰科技有限公司1栋8楼");
WebElement save_button=driver1.findElement(By.xpath("//*[@id='saveEditAddress']"));
save_button.click();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
String currenturl=driver1.getCurrentUrl();
String firsturl="http://ccwp.sit.sf-express.com/page/tencent/addressbook/mybook/address_menber3.html";
if(currenturl.equals(firsturl))
System.out.println("手Q新建地址成功!");
else
System.out.println("手Q新建地址失败!");
driver1.quit();
}
}
import org.openqa.selenium.By;
//import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.Navigation;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class New_address_qq {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver","E:\\autotest\\chromedriver_win3224\\chromedriver.exe");
//System.setProperty("webdriver.chrome.driver","E:\\GoogleChrome39/GoogleChrome39/GoogleChromePortable.exe");
WebDriver driver1=new ChromeDriver();
// JavascriptExecutor jse=(JavascriptExecutor) driver1;
Navigation navigation1=driver1.navigate();
navigation1.to("http://ccwp.sit.sf-express.com/service/setLogin?openId=BCED0272E8303D139EE9879BDAA56B72&phone=13692212840&channel=3");
try{Thread.sleep(4000);
}catch(InterruptedException e){e.printStackTrace();}
navigation1.to("http://ccwp.sit.sf-express.com/page/tencent/index.html");
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
driver1.manage().window().maximize();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
//点击地址簿
WebElement address=driver1.findElement(By.xpath("//*[@id='wrapper']/section[3]/ul[1]/li[1]/a/span"));
address.click();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
WebElement new_address=driver1.findElement(By.xpath("//*[@id='wrapper']/section[2]/ul/li/div/a"));
new_address.click();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
WebElement name=driver1.findElement(By.xpath("//*[@id='userName']"));
name.sendKeys("张小丽手q");
WebElement mobile_number=driver1.findElement(By.xpath("//*[@id='telePhone']"));
mobile_number.sendKeys("13692282840");
WebElement city_name_button=driver1.findElement(By.xpath("//*[@id='destination']"));
city_name_button.click();
try{Thread.sleep(2000);
}catch(InterruptedException e){e.printStackTrace();}
//选择上海市
WebElement shanghai=driver1.findElement(By.xpath("//*[@id='hotList']/li[3]/a"));
shanghai.click();
try{Thread.sleep(1000);
}catch(InterruptedException e){e.printStackTrace();}
//选择金山区
WebElement jinshanqu=driver1.findElement(By.xpath("//*[@id='areaList']/li[13]/a"));
jinshanqu.click();
try{Thread.sleep(1000);
}catch(InterruptedException e){e.printStackTrace();}
WebElement tail_address=driver1.findElement(By.xpath("//*[@id='detailAdress']"));
tail_address.sendKeys("上海顺丰科技有限公司1栋8楼");
WebElement save_button=driver1.findElement(By.xpath("//*[@id='saveEditAddress']"));
save_button.click();
try{Thread.sleep(3000);
}catch(InterruptedException e){e.printStackTrace();}
String currenturl=driver1.getCurrentUrl();
String firsturl="http://ccwp.sit.sf-express.com/page/tencent/addressbook/mybook/address_menber3.html";
if(currenturl.equals(firsturl))
System.out.println("手Q新建地址成功!");
else
System.out.println("手Q新建地址失败!");
driver1.quit();
}
}