zoukankan      html  css  js  c++  java
  • java+selenium+new——元素属性值以及其它基本使用方法

    package rjcs;
    
    
    
    import java.util.*;
    
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.firefox.FirefoxDriver;
    import org.openqa.selenium.interactions.Actions;
    import org.openqa.selenium.support.ui.Select;
    
    public class xinkaishi 
    {
    
        
        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);
                 
                 
                 driver.findElementById("kw").sendKeys("中国美国");
                 System.out.println(driver.findElementById("kw").getAttribute("value"));
                            
                 
                 Thread.sleep(10000);
                 
                 
            }catch (Exception e) 
            {
                e.printStackTrace();
            }finally 
            {
                driver.quit();
            
             }
        }
        
        
        
    }

    执行结果:

    中国美国

  • 相关阅读:
    html添加注释怎么弄?
    编程语言本身是怎么开发出来的?
    一句话说明Facbook React证书的矛盾点
    XAMPP是什么?
    HTTP解析
    version control
    函数式编程语言
    Servlet之Filter
    Build tool
    container和injection
  • 原文地址:https://www.cnblogs.com/xiaobaibailongma/p/12285983.html
Copyright © 2011-2022 走看看