  | TakeScreenShotTakeScreenShotOfElement(IWebElement, String, String) Method | 
Framework to automate tests using Selenium WebDriver
            Takes screen shot of specific element.
            
Namespace: Ocaramba.HelpersAssembly: OcarambaLite (in OcarambaLite.dll) Version: 4.2.4
Syntaxpublic static string TakeScreenShotOfElement(
	IWebElement element,
	string folder,
	string screenshotName
)
 Request Example
		Parameters
- element  IWebElement
 - Element to take screenshot.
 - folder  String
 - Folder to save screenshot.
 - screenshotName  String
 - Name of screenshot.
 
Return Value
StringFull path to taken screenshot.
ExampleHow to use it: 
var el = this.Driver.GetElement(this.menu);
var fullPath = TakeScreenShot.TakeScreenShotOfElement(el, Directory.GetCurrentDirectory() + BaseConfiguration.ScreenShotFolder, "MenuOutSideTheIFrame");
See Also