`
wenjinglian
  • 浏览: 820523 次
  • 性别: Icon_minigender_1
  • 来自: 株洲->深圳
社区版块
存档分类
最新评论

解决: org.openqa.selenium.UnsupportedCommandException: Bad request

阅读更多

学习springside时,运行mini-web功能测试时报:org.openqa.selenium.UnsupportedCommandException: Bad request(运行时错误不会打印出来,看到的效果是firefox被启动但什么也不执行,手动调试时才能抓到异常)

 

解决办法:

 

找到C:\WINDOWS\system32\drivers\etc\HOSTS 文件,在其中添加上这句:

 

添加 
127.0.0.1 localhost
 

 

其实我的hosts文件里有127.0.0.1 localhost 的映射 ,但是被我注释掉了。

 

解决方法来源:http://wind13.blog.163.com/blog/static/2482349201202035348251/

分享到:
评论

相关推荐

    Selenium测试需要jar包完全版

    import org.openqa.selenium.chrome.ChromeDriver; public class SimpleSeleniumTest { @Before public void setUp() { System.setProperty("webdriver.chrome.driver", "path/to/chromedriver"); WebDriver ...

    selenium.remote.server:Selenium Grid 项目的 org.openqa.selenium.remote.server 实用程序类

    selenium.remote.server 此代码基于 Selenium 项目中 Selenium Grid 的重构版本,可在原始代码已被拆分,并进行了一些小改动以允许模块化已制造Selenium Grid 项目的 org.openqa.selenium.remote.server 实用程序类

    python selenium运行失败常见错误.docx

    错误信息:org.openqa.selenium.NoSuchElementException: Unable to locate element:{"method":"xpath","selector":"//*[@id='listDiv']/table[1]/tbody/tr[12]/td[11]/a[2]/img"} 解决方案: * 检查定位方法是否...

    selenium.server:Selenium Grid 项目的 org.openqa.selenium.server 实用程序类

    Selenium服务器 此代码基于 Selenium 项目中 Selenium Grid 的重构版本,可在原始代码已被拆分,并进行了一些小改动以允许模块化已制造 Selenium Grid 项目的 org.openqa.selenium.server 实用程序类

    selenium-java-3.141.59.zip

    import org.openqa.selenium.chrome.ChromeDriver; public class SeleniumExample { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "path/to/your/chromedriver"); ...

    selenium-java-2.45.0-src.rar_java selenium_selenium_selenium web

    4. **org.openqa.selenium.firefox**、**org.openqa.selenium.chrome**等:这些是针对不同浏览器的特定实现。 了解Selenium的源代码可以帮助我们: 1. **调试问题**: 当遇到特定浏览器的行为不符合预期时,可以直接...

    chromedriver.exe

    org.openqa.selenium.WebDriverException: unknown error: call function result missing 'value' (Session info: chrome=65.0.3325.162) (Driver info: chromedriver=2.34.522940 (1a76f96f66e3ca7b8e57d503b4dd3...

    README.txt

    import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.htmlunit.HtmlUnitDriver; import static junit.framework...

    selenium-java-2.44.0.zip

    这个版本包含了所有必要的Java类和接口,如`org.openqa.selenium.By`用于定位页面元素,`org.openqa.selenium.WebElement`代表页面上的元素,以及`org.openqa.selenium.Keys`用于发送键盘事件。 4. Support Classes...

    baidu.java.zip_mac_selenium

    这些代码可能包括了如何导入必要的Selenium库(如`org.openqa.selenium.WebDriver`,`org.openqa.selenium.By`,`org.openqa.selenium.WebElement`等),如何创建WebDriver实例,如何定位网页元素,以及如何执行操作...

    C#使用Selenium+PhantomJS抓取数据

    - 引入必要的命名空间:`OpenQA.Selenium`、`OpenQA.Selenium.PhantomJS`和`System`。 - 创建一个名为`Program`的类,在其中定义`Main`方法。 - 在`Main`方法中,初始化`IWebDriver`实例,使用`PhantomJSDriver`...

    selenium的jar包

    import org.openqa.selenium.chrome.ChromeDriver; public class SeleniumExample { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "path/to/your/chromedriver.exe...

    selenium2 java2.44包

    例如,通过导入`org.openqa.selenium.WebDriver`和`org.openqa.selenium.WebElement`等包,你可以初始化一个WebDriver实例,然后调用其方法来打开网页、查找页面元素并与其交互: ```java import org.openqa....

    selenium最新源码java版

    在Java中,你可以通过`org.openqa.selenium.WebDriver`接口来与浏览器进行交互。 2. **WebElement**: 这个接口代表了网页中的一个元素,例如按钮、输入框等。`org.openqa.selenium.WebElement`提供了各种方法来定位...

    seleniumDriver

    import org.openqa.selenium.firefox.FirefoxDriver; public class FirstExample { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); driver.get("http://www.google.com.hk"...

    selenium最全jar包

    selenium最全的jar包,包括selenium-java-2.42.2,selenium-java-2.42.2-srcs,selenium-server-standalone-2.44.0,省去找包烦恼

    selenium-java jar文件及源码

    import org.openqa.selenium.chrome.ChromeDriver; public class SeleniumDemo { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "path/to/chromedriver"); ...

    [转载]Selenium2.0之WebDriver学习总结(1).docx

    import org.openqa.selenium.support.ui.ExpectedCondition; import org.openqa.selenium.support.ui.WebDriverWait; public class Selenium2Example { public static void main(String[] args) { // 创建一个...

    selenium-java-2.43.1.zip

    例如,`org.openqa.selenium` 包包含了各种类和接口,如 `WebDriver`、`WebElement` 和 `By`,它们是编写 Selenium 测试脚本的基础。 `WebDriver` 接口是 Selenium 的主要入口点,它代表了浏览器实例。通过实现这个...

    Selenium2.0之WebDriver学习总结(1)

    import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.WebDriverWait; public class WebDriverDemo { public static void main(String[] args) { // 创建Firefox...

Global site tag (gtag.js) - Google Analytics