Increase the screen resolution on Test Agent

后端 未结 5 1789
太阳男子
太阳男子 2020-12-30 17:04

Running a automated test against a desktop WPF application works fine on my local machine and on Azure VM Windows Server 2012R2 when accessed via RDP.

However, when

5条回答
  •  时光说笑
    2020-12-30 17:36

    Try running the test headless I had the same issue with TFS and this is the only way it works for me

    args: [
        '--headless',
        '--window-size=1920,1040',
    ],
    

提交回复
热议问题