我是Selenium的新手,并尝试通过selenium驱动程序从Chrome打开localhost:3000页面。代码是:
import com.google.common.base.Function; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebDriverException; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class SeleniumTests { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C://chromedriver_win32//chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get("localhost:3000"); } }
但是,这会在我的Chrome窗口中显示“数据”;。镀铬版本为50.0.2661.94
知道确切的问题是什么吗?
指定您正在使用的协议,而不要localhost:3000使用http://localhost:3000。如果没有帮助,看到评论这里的铬问题跟踪器。
localhost:3000
http://localhost:3000