要求されたページは選択されたバージョンでは利用できない。
AbtPictureCheckManagement
This class is the central point for interacting with a picture check’s information.
注意:
This class and its associated methods are currently supported only by the C# harness.Workflow Implementation
In general, a basic workflow involves the following steps:
- Initialize an AbtPictureCheckManagement object.
- Retrieve a specific picture check by using the GetPictureCheck method. An AbtPictureCheck object is then returned.
- Depending on your needs
- apply various methods belonging to AbtPictureCheck to retrieve a specific baseline image or all baselines of a picture check. An AbtBaselinePicture object is then returned.
- finally, apply methods belonging to AbtBaselinePicture to further process the returned baseline(s).
Example
Suppose that you’d like to save a baseline image, “Baseline {1}”, which belongs to a shared picture check, “Yellow Chevrolet”, into a given folder.
Your snippet of code might resemble the following:
//Initialize AbtPictureCheckManagement object
AbtPictureCheckManagement mgn = new AbtPictureCheckManagement();
//Retrieve a shared picture check "Yellow Chevrolet"
AbtPictureCheck pictureCheck = mgn.GetPictureCheck("/Yellow Chevrolet");
//Retrieve a baseline image "Baseline {1}"
AbtBaselinePicture baseline = pictureCheck.GetBaselineByName("Baseline {1}");
//Save the baseline to a location
int exportResult = baseline.Save("D:\Images");