javascript - Automated testing of webrtc application? - Stack Overflow

I am developing a conferencing app, details:target: chrome browserserver: node.js ( currently windows

I am developing a conferencing app, details:

  • target: chrome browser

  • server: node.js ( currently windows env)

simplest test scenario would be:

  1. open two browser tabs( open browser if need be)
  2. emulate button click on both.
  3. emulate accept getUserMedia request( hardest part)
  4. more emulation stuff and reading JavaScript variable values and verifying them.

Till now, I have been doing manual testing for all of this, but decided that it would be impractical for the long run. I have not done much automated testing( just a bit of unit testing). Initially, i thought mocha would do the job, but beginning to think it is not enough.

I need some pointers as to what are tools or alternate test frameworks needed to achieve browser starting, tab opening and giving media sharing permissions.

I am developing a conferencing app, details:

  • target: chrome browser

  • server: node.js ( currently windows env)

simplest test scenario would be:

  1. open two browser tabs( open browser if need be)
  2. emulate button click on both.
  3. emulate accept getUserMedia request( hardest part)
  4. more emulation stuff and reading JavaScript variable values and verifying them.

Till now, I have been doing manual testing for all of this, but decided that it would be impractical for the long run. I have not done much automated testing( just a bit of unit testing). Initially, i thought mocha would do the job, but beginning to think it is not enough.

I need some pointers as to what are tools or alternate test frameworks needed to achieve browser starting, tab opening and giving media sharing permissions.

Share asked Jan 30, 2015 at 3:47 midomido 25.1k15 gold badges99 silver badges122 bronze badges 1
  • Load multiplier supports webrtc testing. You may like to follow here. – Kamal Palei Commented Feb 20, 2016 at 14:56
Add a ment  | 

3 Answers 3

Reset to default 10 +50

Chrome has mand line flags for skipping get getUserMedia permission as well as using fake devices:

  • --use-fake-ui-for-media-stream (skips GUM permission prompt)
  • --use-fake-device-for-media-stream (uses a fake device)

Check http://blog.andyet./2014/09/29/testing-webrtc-applications, http://googletesting.blogspot.se/2014/08/chrome-firefox-webrtc-interop-test-pt-1.html for background information

If you want to click buttons, the standard tool for this is selenium. If you prefer Javascript to Java, a binding such as webdriver.io might be what you're looking for.

If you like Ruby, take a look at Capybara. You'll probably also want to use Xvfb so that you can run the tests on a machine that doesn't have a display.

Here is an example snippet that will let you open Chome with the switches that Philipp suggests. I've used this to create a headless video recording test.

Capybara.register_driver :chrome do |app|
  switches = %w(disable-popup-blocking disable-translate use-fake-ui-for-media-stream use-fake-device-for-media-stream test-type)
  Capybara::Selenium::Driver.new(app, browser: :chrome, switches: switches)
end

If you are looking for webrtc testing, you may like to see loadmultiplier.., it was answered here previously.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743672200a4487971.html

相关推荐

  • javascript - Automated testing of webrtc application? - Stack Overflow

    I am developing a conferencing app, details:target: chrome browserserver: node.js ( currently windows

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信