0

背景画像が存在し、プロパティが x に対して繰り返すように設定されていることを確認しようとしています。

で画像を取得する

driver.findElement(By.xpath("//body").getCssValue("background-image");

解析できるものを返すので、問題ありません。

ただし、repeat-x プロパティを取得しようとすると、出力が得られません。

driver.findElement(By.xpath("//body").getCssValue("background-repeat-x");

Chrome のエレメント ビューアーに表示される CSS は、次のようになります。

background: #213A6A url('/images/background.png') repeat-x top;
background-image: url(http://mysite/images/background.png);
background-position-x: 50%;
background-position-y: 0%;
background-size: initial;
background-repeat-x: repeat;
background-repeat-y: no-repeat;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgb(33, 58, 106);

どんな助けでも、感謝して受け取りました。ありがとう。

4

1 に答える 1

1

「background-repeat」プロパティの値が「repeat no-repeat」であることをテストできますか?

于 2013-05-02T12:14:16.803 に答える