Increase the screen resolution on Test Agent

瘦欲@ 提交于 2019-12-30 02:28:06

问题


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 the VM is used as build machine, controlled by test agent on TFS or VSTS, all test fails because of the screen resolution is set to 1024x768 screen resolution. The application is not configure to run until this display settings. Is there any way to change the screen settings when we deploy the test agent?

Change VSTS agent session screen resolution when running protractor tests


回答1:


We've encountered the same issue on our Visual studio + Azure solution. To be able to execute the tests we need a higher resolution on the VM than 1027 x 768. But since it's Azure and you pay for machines that are turned on, we also want to turn them off after each run top keep the cost down (especially helpful when you want to scale up a bit).

Therefore it's a real pain that there is no simple option to let the VM boot in a certain (specified) resolution. If there is something more simple than what I'm going to show you, please let me know, but I could not find any. So I up-voted the idea mentioned by Nessi. What we did as a workaround was the following.

Idea's for possible solution

In essence we used this post as a guideline. The most important things we used from this was the Windows credentials part and the TERMSRV.

Our Setup

  • Visual Studio Build server
  • Four Azure VM's, one machine is the selenium-grid-hub the other three are nodes

Our Solution

First we let the Build server start all machines in the resource group (so far so good). Then we created a Powershell script that runs on the build server to the nodes to check and waits for the RDP service to become available. This was needed since it can take up to 10 minutes before we see that this service is active. And finally we trigger a Powershell on the selenium-grid-hub VM to make RDP connections to all nodes in a certain resolution.

In a bit more detail to make sure it all goes automatically and without any manual input needed:

  • Creating and export/import certificates from each node into the hub
  • Making sure that the credentials are stored in the credential manager > Windows Credentails (we created one user on all machines to make life a tiny bit easier)
  • Creating a script for checking if the RDP service is active
    • We call this script C:\Scripts\RDPServiceRunCheck.ps1 (see example below) in a VS build block with the arguments $(Password) $(Chrome-node) $(Username)
    • Where all these arguments have been stored in variables on the build server
    • Here is the code for the script on github
  • Creating a executable for starting a RDP in a certain resolution
    • We call this script C:\Scripts\Resolution.RDP.Remoting.exe (see example below) in a VS building block with the arguments "C:\Scripts\$(Chrome-node).rdp" 1600 1200
    • Where the *.rdp file for each machine was stored (upfront) in this folder and 1600 1200 is the resolution we want to set
    • Here is the code for the executable on github



回答2:


This is an older question, so thought it best to throw this out there if it helps anyone.

There is a Screen Resolution Utility AzureDevOps Build/Release task to change the screen resolution of the agent machine. Useful when running UI tests such as Selenium, Coded UI etc.

https://marketplace.visualstudio.com/items?itemName=ms-autotest.screen-resolution-utility-task




回答3:


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',
],



回答4:


This is a limitation with Azure VM since it use RDP to set the screen resolution. Refer to this link for details: Why is not possible increase or change display resolution in Azure VM.

The RDP session uses the RDP display driver, not the Microsoft Virtual Machine Bus Video Device.

Although the RemoteFX feature enables a broader range of graphics workloads than regular RDP, RemoteFX is not available for Azure VMs.




回答5:


I am having the same problem. As there is a way to specify a resolution for an RDP session (even for an Azure VM), I created a UserVoice idea to get this desired feature (specify a resolution when running UI tests with "Run Functional Tests" task).

In the meantime, I am using a workaround. Our build VM opens an RDP session in the desired resolution (currently to cover different browser sizes this session runs at 4800x2700) to the test machine with the account, the UI tests are executed with. When there is an active session, the UI tests just connect to that session and uses the resolution that is currently shown. This way we have a constant RDP session from the Azure build VM to the Azure test VM, but it works :)



来源:https://stackoverflow.com/questions/45829787/increase-the-screen-resolution-on-test-agent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!