您好,登錄后才能下訂單哦!
package mqTest;
import java.io.File;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
public class testSelenium1 {
public testSelenium1() {
// TODO Auto-generated constructor stub
}
public static void main(String[] args) {
// TODO Auto-generated method stub
//WebDriver driver=new FirefoxDriver();
File file = new File("F:/IEDriverServer.exe");
System.setProperty("webdriver.ie.driver", file.getAbsolutePath());
DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();
ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS,true);
WebDriver driver=new InternetExplorerDriver(ieCapabilities);
driver.get("https://www.baidu.com");
//WebElement loginLink=driver.findElement(By.partialLinkText("登"));
//loginLink.click();
/*頁面代碼
* <input id="kw" name="wd" class="s_ipt" value="" maxlength="255" autocomplete="off"></span><span class="bg s_btn_wr"><input type="submit" id="su" value="百度一下" class="bg s_btn">
*/
//用id
WebElement baiduTextBox = driver.findElement(By.id("kw"));
baiduTextBox.sendKeys("selenium");
WebElement button=driver.findElement(By.id("su"));
button.click();
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。