我正在尝试执行下面的硒代码片段,我在其中打开facebook.com,然后尝试获取标题,然后单击“登录”按钮。但是,在打开facebook.com之后,执行类型会暂停并且不执行任何操作。即使是driver.close或driver.quit也对我不起作用。您能解释一下我要去哪里了吗。
`package SeleniumTests;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class SeleniumScript2 {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver","C:\\Swarup\\Selenium\\geckodriver-v0.23.0-win64\\geckodriver.exe");
WebDriver driver=new FirefoxDriver();
driver.manage().window().maximize();
driver.manage().timeouts().pageLoadTimeout(5, TimeUnit.SECONDS);
driver.get("http://www.facebook.com/");
String actualtitle=driver.getTitle();
System.out.println("The title of the page is " +actualtitle);
driver.findElement(By.id("u_0_8")).click();
driver.close();
}
}`