webshot 0.3.0

A command-line tool for automated website screenshots and web scraping
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod browser;
pub mod comparison;
pub mod config;
pub mod error;
pub mod output;
pub mod screenshot;

pub use error::{Result, WebshotError};

// Re-export commonly used types
pub use browser::Browser;
pub use comparison::{ComparisonOptions, ComparisonResult, ImageComparator};
pub use config::{Config, ScreenshotConfig};
pub use screenshot::{ScreenshotOptions, ScrollMode};