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
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 :)
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.
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
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:
C:\Scripts\RDPServiceRunCheck.ps1
(see example below) in a VS build block with the arguments $(Password) $(Chrome-node) $(Username)
C:\Scripts\Resolution.RDP.Remoting.exe
(see example below) in a VS building block with the arguments "C:\Scripts\$(Chrome-node).rdp" 1600 1200
1600 1200
is the resolution we want to setTry 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',
],
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