Observação
O acesso a essa página exige autorização. Você pode tentar entrar ou alterar diretórios.
O acesso a essa página exige autorização. Você pode tentar alterar os diretórios.
Most probably, this is because you have not initialized Playback.
In this post, Gautam has described how to use UI Testing methods without creating a Coded UI Test. It is important to note that, If Playback.Initialize() is not called before invoking any UI Testing method, an exception will be thrown.
e.g:-
- If you attempt to call UITestControl.Find() method (without calling Playback.Initialize), you will get a NullReferenceException. Note that there is an implicit Find() call whenever we act on a UI Test Control (unless it has previously been found and is available in the cache).
- If you attempt to call BrowserWindow.Launch() method (without calling Playback.Initialize), you will get a TechnologyNotSupportedException
In a Coded UI Test, Playback.Initialize() and Playback.Cleanup() are called implicitly.
Comments
- Anonymous
August 03, 2010
The comment has been removed