webrtc / KITE

KITE is a test engine designed to test WebRTC interoperability across browsers
Apache License 2.0
468 stars 126 forks source link

How do I stop KITE in sending fake media ? #90

Closed rsharma0824 closed 4 years ago

rsharma0824 commented 4 years ago

HI,

How do I stop the KITE in sending the fake Video streaming ?Whenever I run the test,KITE is sending a fake video. I don't want the fake media streaming during my test run.Please advise

namvuCosmo commented 4 years ago

Hi,

You can choose not to send fake media as follow :

    {
      "browserName": "chrome",
      "version": "80",
      "platform": "WINDOWS",
      "headless": false,
      "useFakeMedia": false,
      "exclude": false
    }
rsharma0824 commented 4 years ago

Thank you @namvuCosmo ..Can you please redirect me to the file which has the above information?There are lot of config files in the KITE folder ,but I am not sure which file to update?

namvuCosmo commented 4 years ago

In all of these config files ( like this one) you should see a clients section that contains the browsers/apps configurations that you want to run your test with and you can modify them like I mentioned in my previous comment to not send fake media.

If you want to dive into the code to see where these parameters are used, take a look at these classes in our Framework module :

namvuCosmo commented 4 years ago

close due to inactivity