真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Se(15)對象的狀態(tài)

package test;

企業(yè)建站必須是能夠以充分展現(xiàn)企業(yè)形象為主要目的,是企業(yè)文化與產(chǎn)品對外擴展宣傳的重要窗口,一個合格的網(wǎng)站不僅僅能為公司帶來巨大的互聯(lián)網(wǎng)上的收集和信息發(fā)布平臺,創(chuàng)新互聯(lián)面向各種領(lǐng)域:成都宣傳片制作成都網(wǎng)站設(shè)計全網(wǎng)營銷推廣解決方案、網(wǎng)站設(shè)計等建站排名服務(wù)。


import org.openqa.selenium.By;

import org.openqa.selenium.NoSuchElementException;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.WebElement;

import org.openqa.selenium.chrome.ChromeDriver;

import org.testng.annotations.Test;

public class buttongroup {

@Test

public void test(){

System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");

WebDriver dr = new ChromeDriver();

dr.manage().window().maximize();

dr.get("file:///C:/Users/fengchuanyun/Desktop/1/%E8%87%AA%E5%8A%A8%E5%8C%96%E7%BB%83%E4%B9%A0/status.html");

        

//isExist

try {

WebElement el = dr.findElement(By.id("12345"));

System.out.println("the element is e1");

 

} catch (NoSuchElementException e) {

System.out.println("no such element e1");

}

try {

WebElement e2 = dr.findElement(By.name("user"));

System.out.println("the element is e2");  

 

} catch (NoSuchElementException e) {

System.out.println("no such element e2");

}

    //isDisplayed

WebElement e3 = dr.findElement(By.name("radio"));

if (e3.isDisplayed()) {

System.out.println("e3顯示");

}

else {

System.out.println("e3不顯示");

}

 

             //isEnabled

WebElement e4 = dr.findElement(By.name("user"));

if (e4.isEnabled()) {

System.out.println("e4可用");

}

else {

System.out.println("出錯了,e4不可用");

}

 

//isSelected

WebElement e5 = dr.findElement(By.name("radio"));

if (e5.isSelected()) {

System.out.println("e5被選中");

}

else {

System.out.println("出錯了,沒有被選中");

}

//dr.quit();

}

}

        

        

    


文章名稱:Se(15)對象的狀態(tài)
文章起源:http://weahome.cn/article/ggsohe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部