欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

WebDriver: Getting it to play nicely with Xv

系統 2088 0

http://www.markhneedham.com/blog/2011/12/15/webdriver-getting-it-to-play-nicely-with-xvfb/

?


Thoughts on Software Development

?

with 2 comments

Another thing we’ve been doing with WebDriver is having it run with the FirefoxDriver while redirecting the display output into the? Xvfb framebuffer ?so that we can run it on our continuous integration agents which don’t have a display attached.

The first thing we needed to do was set the environment property ‘webdriver.firefox.bin’ to our own script which would point the display to Xvfb before starting Firefox:

                  import java.lang.System._

lazy val firefoxDriver: FirefoxDriver = {

  setProperty("webdriver.firefox.bin", "/our/awesome/starting-firefox.sh")

  new FirefoxDriver()

}
                

Our first version of the script looked like this:

/our/awesome/starting-firefox.sh

                  #!/bin/bash

?

rm -f ~/.mozilla/firefox/*/.parentlock

rm -rf /var/go/.mozilla

?

?

XVFB=`which xVfb`

if [ "$?" -eq 1 ];

then

    echo "Xvfb not found."

    exit 1

fi

?

$XVFB :99 -ac &

?

?

BROWSER=`which firefox`

if [ "$?" -eq 1 ];

then

    echo "Firefox not found."

    exit 1

fi

?

export DISPLAY=:99

$BROWSER &
                

The mistake we made here was that we started Xvfb in the background which meant that sometimes it hadn’t actually started by the time Firefox tried to connect to the display and we ended up with this error message:

                  No Protocol specified

Error cannot open display :99
                

We really wanted to keep Xvfb running regardless of whether the Firefox instances being used by WebDriver were alive or not so we moved the starting of Xvfb out into a separate script which we run as one of the earlier steps in the build.

We also struggled to get the FirefoxDriver to kill itself after each test as calling ‘close’ or ‘quit’ on the driver didn’t seem to kill off the process.

We eventually resorted to putting a ‘pkill firefox’ statement at the start of our firefox starting script:

/our/awesome/starting-firefox.sh

                  #!/bin/bash

?

rm -f ~/.mozilla/firefox/*/.parentlock

rm -rf /var/go/.mozilla

?

pkill firefox

?

BROWSER=`which firefox`

if [ "$?" -eq 1 ];

then

    echo "Firefox not found."

    exit 1

fi

?

export DISPLAY=:99

$BROWSER &
                

It’s a bit hacky but it does the job more deterministically than anything else we’ve tried previously.

Be Sociable, Share!

WebDriver: Getting it to play nicely with Xvfb


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 亚洲欧洲成人 | 日韩精品一区二区三区在线观看 | 亚洲一区在线观 | 国产日韩欧美中文 | 女人色毛片女人色毛片中国 | 热久久这里只有精品 | 国产精品亚洲一区 | 国内精品伊人久久久影视 | 久久久一区二区三区不卡 | 大香伊蕉国产短视频69 | 播放一级毛片 | 免费毛片在线播放 | 波多野结衣免费线在线 | 九九久久看少妇高潮A片特黄 | 欧美色性 | 免费成人在线观看 | 欧美日韩不卡在线 | 毛片毛片毛片毛片毛片毛片毛片 | 亚洲性69影院在线观看 | 毛片基地看看成人免费 | 国产成年网站 | 亚洲一区二区国产 | 99精品国产一区二区青青牛奶 | 欧美精品一区二区三区久久 | 九九热视频这里只有精品 | 欧美二区视频 | 久久国产精品免费一区二区三区 | 国产一区二区三区国产精品 | 啪啪网免费 | 久久精品国产免费看久久精品 | 成人午夜在线视频 | www.奇米影视.com | 欧洲精品一区二区三区在线观看 | 亚洲日韩精品AV无码富二代 | 一级一级毛片免费看 | 看片亚洲 | 国产成人a亚洲精品 | 国产精品久久久久久久久久免费 | 91高清国产经典在线观看 | 久久久久综合 | 欧美黑人玩白人巨大极品 |