遠(yuǎn)程執(zhí)行代碼:
1 import org.openqa.selenium.*;
2 import org.openqa.selenium.remote.DesiredCapabilities;
3 import org.openqa.selenium.remote.RemoteWebDriver;
4
5 import java.lang.Thread;
6 import java.net.URL;
7
8
9 public class selenium_grid_remote
10 {
11 public static void main(String arg[]) throws Exception
12 {
13
14 DesiredCapabilities ffDesiredcap = DesiredCapabilities.firefox();
15 DesiredCapabilities chromeDesiredcap = DesiredCapabilities.chrome();
16 DesiredCapabilities ieDesiredcap = DesiredCapabilities.internetExplorer();
17
18 ffDesiredcap.setCapability("firefox_binary","C:\Program Files (x86)\Mozilla Firefox\firefox.exe");
19 WebDriver wd = new RemoteWebDriver(new URL("
http://127.0.0.1:4555/wd/hub"), ffDesiredcap);
20 wd.get("
http://www.baidu.com");
21 Thread.sleep(1200);
22 System.out.println(wd.getCurrentUrl());
23 }
24
25 }
五:以上代碼執(zhí)行成功則代表環(huán)境是沒有問題的,接下來需要注意的東西,是我從網(wǎng)上找來需要注意的東西,僅供大家參考:
多線程并發(fā)運(yùn)行WebDriver的步驟:1.運(yùn)行hub 2.運(yùn)行node 3.運(yùn)行test case 。下面說下具體實(shí)現(xiàn)方法。
1.運(yùn)行hub。在命令行中輸入:java -jar selenium-server-standalone-2.37.0.jar -role hub -maxSession 40 -port 4444
參數(shù)中必須指明-role hub 才是運(yùn)行hub。默認(rèn)端口是4444,如果端口被占用需要指定其他。-maxSession是大處理的會話請求,我這里設(shè)置為40。如果不指定的話,默認(rèn)是1(即單線程模式了)。
2.運(yùn)行node。(先說下運(yùn)行一個(gè)node情況)在命令行中輸入(下面的命令是一行敲完):
java -Dwebdriver.ie.driver=D:IEDriverServer.exe -jar selenium-server-standalone-2.37.0.jar -role node -hub
http://127.0.0.1:4444/grid/register -maxSession 20 -browser "browserName=internet explorer,version=9,platform=WINDOWS,maxInstances=20" -port 5555
由于node是可以運(yùn)行在不通系統(tǒng)上的,所以指定驅(qū)動位置-Dwebdriver.ie.driver=D:IEDriverServer.exe。參數(shù)中必須指明-role node才是運(yùn)行node。參數(shù)-hub 后面是第一步中hub的IP和端口:http://hub的IP:端口/grid/register 。node默認(rèn)的maxSession的值是5(多并發(fā)5個(gè)瀏覽器),即啟動一個(gè)node會默認(rèn)有5個(gè)firefox、1個(gè)chrome、1個(gè)IE的實(shí)例。如果用IE瀏覽器的話,算你的測試case是多線程,終也會是一個(gè)一個(gè)的執(zhí)行。但是如果在后面的-browser的參數(shù)中指明maxInstances=5,那么會同時(shí)運(yùn)行5個(gè)瀏覽器。-browser參數(shù)是指明node可以用的瀏覽器信息。注意,如果node的maxSession和maxInstances設(shè)置的有問題,那么hub的命令窗口中會給出警告。通過這里能夠知道你的node是否設(shè)置成功。運(yùn)行node后,窗口中也會顯示該node的信息。-port是端口號,默認(rèn)端口是5555,如果端口被占用需要指定其他。如果你啟動第二個(gè)node的話,端口必須指定了,不能是5555。
我設(shè)置的node是只運(yùn)行IE,并且并發(fā)數(shù)是20,多有20個(gè)IE瀏覽器在運(yùn)行。node中的maxSession的值不能超過hub中的。如果想多線程并發(fā)要在hub和node的參數(shù)中同時(shí)指明maxSession值。node中如果用IE瀏覽器,指明maxSession后還需要指明同樣大小的maxInstances值。我的例子終會同時(shí)運(yùn)行20個(gè)IE瀏覽器。maxSession是說node可以有幾個(gè)瀏覽器同時(shí)運(yùn)行,而maxInstances是說某個(gè)瀏覽器可以有幾個(gè)同時(shí)運(yùn)行。由于我的電腦運(yùn)行20個(gè)IE已經(jīng)有些卡了,那么可以再另外一個(gè)電腦上再運(yùn)行一個(gè)20Session大小的node。個(gè)人測試結(jié)果:運(yùn)行一個(gè)20Session大小的node和運(yùn)行2個(gè)10Session大小的node沒什么差別。運(yùn)行多個(gè)node主要還是為了能夠分布式的測試,不至于一個(gè)電腦打開太多瀏覽器。
3.運(yùn)行test case。首先將上面代碼中的44和47行注釋掉,將48行注釋打開。我們需要用遠(yuǎn)程的方式將請求提交給hub(后面的/wd/hub是固定的)。
WebDriver driver = new RemoteWebDriver(new URL("
http://hub的IP:端口/wd/hub"),capability);
由于是遠(yuǎn)程的方式,所以44行的設(shè)置沒什么用了。下面你可以運(yùn)行你的程序了,你會發(fā)現(xiàn)同時(shí)啟動20個(gè)線程,會有20個(gè)IE瀏覽器同時(shí)在運(yùn)行。
六.我整理的東西完了,有不對的地方大家多多討論,謝謝。