예제 #1
0
        private static async Task AssertHoverAsync(ElementHandle tabHeader)
        {
            await tabHeader.HoverAsync();

            var textColor = await tabHeader.EvaluateFunctionAsync <string>("x=>window.getComputedStyle(x,null).color");

            Assert.Equal("rgb(64, 158, 255)", textColor);
        }