镜头 - 元素屏幕截图未正确拍摄



我正在尝试使用Ashot截取特定元素的屏幕截图。 不幸的是,我没有获得元素屏幕截图。 当我将我的代码发送给运行它的其他人时,元素屏幕截图被正确拍摄。 我不明白为什么它不能在我的计算机上工作。

代码为:

public class ScreenShot
{
WebDriver driver;
@BeforeClass
public void StartSession()
{
WebDriverManager.chromedriver().setup();
driver = new ChromeDriver();
driver.manage().window().maximize();
driver.get("https://www.google.com/");
}
@Test
public void VerifyScreenShot()
{
TakeScreenShot();
//CompareScreenShot();
}
@Step("take element screen shot")
public void TakeScreenShot()
{
try
{
//find the element you want to picture
WebElement imageElement = driver.findElement(By.id("hplogo"));
//take the element screenshot
Screenshot imageScreenShot = new AShot().coordsProvider(new WebDriverCoordsProvider()).takeScreenshot(driver,imageElement);
//save the element picture in the project folder under img folder
ImageIO.write(imageScreenShot.getImage(),"png",new File("./img/glogo.png"));
}
catch (Exception e)
{
System.out.println("Error writing image file: "+ e);
}
}
@AfterClass
public void EndSession()
{
driver.quit();
}
}

我找到了解决方案。 我需要将计算机分辨率更改为 100%,然后截取元素屏幕截图。 比元素图像如我预期的那样。

相关内容

  • 没有找到相关文章

最新更新