溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

[Selenium2]—如何獲取網(wǎng)站浮動(dòng)DIV

發(fā)布時(shí)間:2020-07-03 12:06:38 來源:網(wǎng)絡(luò) 閱讀:1841 作者:挨踢LaoZ 欄目:軟件技術(shù)
//引用包
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;


public class TEST001 {

	public static void main(String[] args) {
	
	//瀏覽器路徑
        System.setProperty("webdriver.firefox.bin", "D:/Firefox/firefox.exe");
       
        /*新建瀏覽器驅(qū)動(dòng)
        // 這里是火狐瀏覽器驅(qū)動(dòng),其他瀏覽器驅(qū)動(dòng)參考
        // http://diaosi58.blog.51cto.com/2722311/1671998 文檔
        */
        WebDriver driver = new FirefoxDriver();
        
        //給瀏覽器輸入欄輸入一個(gè)連接
        driver.get("http://huodong.12kaixue.net/s/0-v134.html");
        
        //獲取頁(yè)面按鈕
        WebElement rush_btn = driver.findElement(By.id("rush_btn")); 
        
        //點(diǎn)擊按鈕
    	rush_btn.click();
    	
    	//瀏覽器最大化
    	maxBrowser(driver);
    	setScroll(driver,500);
    	
    	//找到頁(yè)面浮動(dòng)DIV
    	driver.findElement(By.className("fl")).click();
    	
    	//找到頁(yè)面浮動(dòng)DIV,帳號(hào)輸入框
    	driver.findElement(By.xpath("http://input[@id='username']")).sendKeys("x986");
    	
    	//找到頁(yè)面浮動(dòng)DIV,密碼輸入框
    	driver.findElement(By.xpath("http://input[@id='password']")).sendKeys("a123456");
    	
    	//找到頁(yè)面浮動(dòng)DIV,登錄按鈕,點(diǎn)擊登錄
    	driver.findElement(By.className("submit-input")).click();  
        
        //關(guān)閉事件
        driver.close();
	}

	private static void setScroll(WebDriver driver, int i) {
		// TODO Auto-generated method stub
		
	}

	private static void maxBrowser(WebDriver driver) {
		// TODO Auto-generated method stub
		
	}

}


如果,想使項(xiàng)目循環(huán)的朋友,請(qǐng)加上循環(huán)語句便是。如果不懂請(qǐng)加我QQ:807002272或者發(fā)郵件kasthjob@126.com

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI