zoukankan      html  css  js  c++  java
  • java+selenium+new——对当前浏览器窗口进行截屏,保存到指定文件夹,并用时间作为名字

    package rjcs;
    
    import java.io.File;
    import java.util.List;
    
    import org.apache.commons.io.FileUtils;
    import org.openqa.selenium.os.WindowsUtils;  
    import org.openqa.selenium.By;
    import org.openqa.selenium.OutputType;
    import org.openqa.selenium.TakesScreenshot;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.firefox.FirefoxDriver;
    import org.openqa.selenium.interactions.Actions;
    import org.openqa.selenium.os.WindowsUtils;
    import org.openqa.selenium.support.ui.Select;
    
    
    
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    public class ddddd 
    {
    
        
        public static void main(String[] args)
        
        {
             System.setProperty("webdriver.firefox.bin","C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");    //设置火狐的安装路径,防止系统找不到
                
             FirefoxDriver driver = new FirefoxDriver();        //初始化FireFox浏览器实例,并打开浏览器
             
            try
            {
                 driver.manage().window().maximize();         //最大化窗口
                 
                 Thread.sleep(5000);    
                 
                 driver.navigate().to("http://www.baidu.com"); 
                 
                 Thread.sleep(5000);
                 
                 
                 
                 Actions action = new Actions(driver);
                 
                 action.moveToElement(driver.findElementByLinkText("设置")).perform();     //鼠标悬浮在 设置  元素上面
                 
                 driver.findElementByClassName("setpref").click();      // 打开搜索设置
                 
                 Thread.sleep(5000);
                 
                 
                 
                 
                 
                 
                 
                DateFormat dateformat= new SimpleDateFormat("yyyy-MM-dd-HH-mm-ss");  //创建一个data format对象
                Date date = new Date();  //利用Date()获取当前时间            
                String date1 = dateformat.format(date);    //格式化时间,并用String对象存储        
                System.out.println(date1);   //打印格式化时间到控制台
                 
                 
                 
                 
                 
                 
    
                 File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
    
                 FileUtils.copyFile(scrFile, new File("C:\\Users\\del\\Desktop\\新建文件夹 (2)", date1 + ".png"));
    
                 
                 Thread.sleep(10000);
                 
                 
            }catch (Exception e) 
            {
                e.printStackTrace();
            }finally 
            {
                driver.quit();
            
             }
        }
        
        
        
    }

  • 相关阅读:
    快速搭建 STF开源云测平台 测试人员专用
    快速搭建sonarqube代码检测平台
    使用jenkins交付微服务应用至kubernetes集群
    普通主机拥有集群控制权限
    为ingress资源添加basic auth认证
    GO语言入门
    GO语言入门
    GO语言入门
    GO语言入门
    关闭提示的下拉框
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12285517.html
Copyright © 2011-2022 走看看