In the latest version of Telerik Test Studio, we added support for many HTML5 tags, such as Canvas, Audio, and Video tags. All HTML tags are accessible using code and are located under:
namespace ArtOfTest.WebAii.HtmlControls. You will find HTML5 controls, for example:
HtmlCanvas, HtmlAudio, HtmlVideo, HtmlMeter and all advanced HtmlInput types such as HtmlInputEmail, HtmlInputSearch..etc.
For HtmlCanvas, you really have access to the 2D context of the control. Thus, you even manipulate it and can do things like:
HtmlCanvas.Context2dRotate (), HtmlCanvas.Context2dTransform () ... etc.
I hope this helps.
source share