List of Selenium RC browser launchers

前端 未结 1 1316
面向向阳花
面向向阳花 2020-12-08 05:08

I am trying to find a full list of Selenium RC browser launchers. So far I\'ve not been able to find any documentation that lists them all. I\'ve gathered the following one

相关标签:
1条回答
  • 2020-12-08 05:21

    If you try and start a selenium session with the wrong browser id

    e.g.

    selenium = new DefaultSelenium("localhost", server.getPort(),
                    "*gf", "http://www.eviltester.com");
    

    Then selenium 1.0.3 will report the following list:

    Supported browsers include:

    • firefox
    • mock
    • firefoxproxy
    • pifirefox
    • chrome
    • iexploreproxy
    • iexplore
    • firefox3
    • safariproxy
    • googlechrome
    • konqueror
    • firefox2
    • safari
    • piiexplore
    • firefoxchrome
    • opera
    • iehta
    • custom

    This lists a few more than you have.

    0 讨论(0)
提交回复
热议问题