GUI__文件上传__driver对象
Posted 18513757531
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GUI__文件上传__driver对象相关的知识,希望对你有一定的参考价值。
一、代码如下
package www.gui.v2; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.interactions.Actions; public class FileUpload { WebDriver driver= null; Actions actions= null; public static void main(String[] args) { // TODO Auto-generated method stub FileUpload gx= new FileUpload(); gx.init(); } private void init() { // TODO Auto-generated method stub // TODO Auto-generated method stub // System.setProperty("webdriver.firefox.bin", "D:\\Mozilla // Firefox\\firefox.exe"); System.setProperty("webdriver.firefox.bin", "D:\\FireFox__37\\firefox.exe"); this.driver = new FirefoxDriver();// 启动火狐浏览器 this.driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);// 元素等待时间 this.driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);// 页面加载时间 this.driver.manage().timeouts().setScriptTimeout(30, TimeUnit.SECONDS);// ajax请求 this.driver.manage().window().maximize(); // this.driver.get("https://www.baidu.com/");// 在浏览器中打开该网址 actions = new Actions(driver); this.driver.get("http://localhost/secure/view.php?id=last"); this.driver.findElement(By.partialLinkText("新增")).click(); //this.driver.findElement(By.name("attachment")).click(); this.driver.findElement(By.name("attachment")).sendKeys("C:\\Users\\Administrator\\Desktop\\start___All.bat"); this.driver.findElement(By.xpath("/html/body/table/tbody/tr[8]/td/input")).click(); } }
以上是关于GUI__文件上传__driver对象的主要内容,如果未能解决你的问题,请参考以下文章
Driver对象的navigate方法__浏览器被操作__前进后退刷新当前窗口切换到连接
[AndroidStudio]_[初级]_[配置自动完成的代码片段]
YJX_Driver_009_DDK_HelloWorld_NT
[AndroidStudio]_[初级]_[配置自动完成的代码片段]