Selenium + Node
Introduction to Selenium Webdriver Introduction to Node.js Installation and Environment set up NPM – Package Manage for Node.js Directory layout of Selenium Webdriver Node.js package Chrome Chrome with options Chrome in Mobile Emulation IE Firefox Element identification methodsAssertions in Selenium in Node.js Interacting with elements in Selenium in Node.js Basic Browser window automation Sending keys in Selenium in Node.js Synchronization in Selenium Check if Element exists Working with Tables using Selenium Performing advanced actions using Selenium in Node.js Executing JavaScript in Selenium in Node.js Working with multiple Browser Windows or tabs Working with multiple frames Handling alerts Common exceptions in Selenium Taking a screenshot in selenium Mocha – Unit testing framework Selenium gridTaking a screenshot in Selenium in node
Below example illustrates how to take a screenshot in Selenium in Node.js
var assert = require(‘assert’);
var fs = require(‘fs’);
var webdriver = require(‘selenium-webdriver’),
By = webdriver.By,
until = webdriver.until;
var chrome = require(“selenium-webdriver/chrome”);
var options = new chrome.Options();
options.addArguments(“start-maximized”);
options.addArguments(“test-type”);
var driver = new webdriver.Builder().
withCapabilities(options.toCapabilities()).build();
driver.get(‘https://www.softpost.org/selenium-test-page/’);
//You can use below code to take the Screenshot of the web page.
driver.takeScreenshot().then(
function(image, err) {
//Screenshot will be saved under current directory with name myscreenshot.png
fs.writeFile(‘myscreenshot.png’, image, ‘base64’, function(error) {
if(error!=null)
console.log(“Error occured while saving screenshot” + error);
});
}
);
driver.quit();
Web development and Automation testing
solutions delivered!!