iFrame
の中にのstyle
属性を読み取る方法はありますか? Body
、NativeElement
、Frame
、およびその他のProperties
の複数の組み合わせを試しましたが、これまでのところ私は運がありませんでした。iframeの本文にあるWatiNの読み取り属性
<iframe id="iFrame" width="100%" height="500" frameborder="0" src="some source">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body style="margin: 0px; padding: 0px;height:500px;">
</body>
</html>
</iframe>
例:インラインフレームが異なる形式の内側かもしれ
_browser.Frame(Find.ById(frameId)).Body.GetAttributeValue("style")
はあなたが試さなかった別の形にあった:_browser.Frame(Find.ById(frameIDの))Body.Style;。 – alonp
後で試してみます。 – iCantSeeSharp