Selenium脚本之基本元素常用方法

页面基本元素:

1.图片上传方法

   private static void fileUpload(WebDriver driver, String s, String filepath) {

        WebElement file = driver.findElement(By.name(s));

        file.sendKeys(filepath);     

    }

调用:

  fileUpload(driver, "file", "C://pictures//pic1.jpg");

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/193099.html

(0)
上一篇 2021年11月15日
下一篇 2021年11月15日

相关推荐

发表回复

登录后才能评论