public class chrometest { public static void main(String[] args) throws InterruptedException { String chromepath="path"; System.setProperty("webdriver.chrome.driver", chromepath); //初始化一個chrome瀏覽器實例,實例名稱叫driver WebDriver driver = new ChromeDriver(); //最大化窗口 driver.manage().window().maximize(); //get()打開一個站點 driver.get("https://music.163.com/"); //切換到第二個tab-li[2] WebElement tagele1 = driver.findElement(By.xpath("//*[@id=\"g_nav2\"]/div/ul/li[2]/a")); tagele1.click(); //切換iframe WebElement frame = driver.findElement(By.xpath("//*[@id=\"g_iframe\"]")); driver.switchTo().frame(frame); //點擊播放按鈕 WebElement play_button = driver.findElement(By.xpath("//*[@id=\"toplist\"]/div[2]/div/div[1]/div/div[2]/div/div[3]/a[1]")); play_button.click(); //打印當前url System.out.println("當前.....打開頁面是: "+ driver.getCurrentUrl()); //切換 //---------------------- driver.switchTo().defaultContent(); //---------------------- Thread.sleep(3000); WebElement tagele0 = driver.findElement(By.xpath("//*[@id=\"g_nav2\"]/div/ul/li[1]/a")); tagele0.click(); System.out.println("當前.....打開頁面是: "+ driver.getCurrentUrl()); Thread.sleep(3000); Actions action = new Actions(driver); action.moveToElement(driver.findElement(By.xpath("//*[@class=\"link s-fc3\"]"))).perform(); Thread.sleep(3000); WebElement ele2 = driver.findElement(By.xpath("//*[em=\"QQ登陸\"]")); ele2.click(); Thread.sleep(3000); //---------------------- String title = "安全登陸"; String s = null; Set<String> handles = driver.getWindowHandles(); for (String t : handles) { System.out.println("switchWindow: "+t); if (driver.switchTo().window(t).getTitle().contains(title)) { s = t; } } driver.switchTo().window(s); System.out.println("target_window_handler:"+s); WebElement qframe = driver.findElement(By.xpath("//*[@id=\"ptlogin_iframe\"]")); driver.switchTo().frame(qframe); //點擊意見反饋 WebElement qplay_button = driver.findElement(By.xpath("//*[@id=\"feedback_qlogin\"]")); qplay_button.click(); Thread.sleep(8000); System.out.println("當前.....打開頁面是: "+ driver.getCurrentUrl()); driver.quit(); } }