我想知道如何复制“ http://news.google.com/?ned=us&topic=t ”中的“?ned=us&topic=t”部分。基本上,我想复制 url 的路径,或者“.com”之后的部分。我该怎么做呢?
public class Example {
public static String url = "http://news.google.com/?ned=us&topic=t";
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get(url);
WebElement reportCln=driver.findElement(By.id("id_submit_button"));
String path=driver.getCurrentUrl();
System.out.println(path);
}
}