Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

State of the Se (15) object

2025-01-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Package test

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", "DJV 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 display")

}

Else {

System.out.println ("E3 does not display")

}

/ / isEnabled

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

If (e4.isEnabled ()) {

System.out.println ("e4 available")

}

Else {

System.out.println ("error, E4 not available")

}

/ / isSelected

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

If (e5.isSelected ()) {

System.out.println ("E5 selected")

}

Else {

System.out.println ("error, not selected")

}

/ / dr.quit ()

}

}

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report