如何在Robot框架中为IEDriverServer.exe使用固定端口?

时间:2017-12-19 17:29:58

标签: python selenium robotframework

我正在尝试使用selenium和IEDriverServer打开网页。问题是只有特定的端口是开放的。我需要在特定端口上运行驱动程序可执行文件。

2 个答案:

答案 0 :(得分:0)

启动驱动程序时,只需使用--port开关即可。您可以看到可用的命令开关here

答案 1 :(得分:0)

使用Create Webdriver关键字可以将端口设置为参数:

*** Settings ***
Library    SeleniumLibrary

Suite Teardown    Close All Browsers

*** Test Cases ***
Custom IE WebDriver port

    Create Webdriver    Ie   port=${7777}
    Go to     http://cnn.com

    Close Browser