2017-12-19 2 views

답변

0

드라이버를 시작할 때 --port 스위치를 사용하기 만하면됩니다. 사용할 수있는 명령 스위치 here을 볼 수 있습니다.

+0

: 브라우저 열기 \t을 https://xxxxxx.xxxxxx.com:19100을 /web/login.jsp \t 예 : 클릭 요소 \t id = overridelink 어디에서 --port 및 switch를 추가합니까? 미안 해요. 아주 새로운데. – asing13

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 
관련 문제