Home All courses
Online TrainingContact UsAbout Us
Over lay
Table of Contents

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 grid

Launch chrome in Selenium in node

Here is the sample code to launch the chrome browser using Node.js
 
var webdriver = require(‘selenium-webdriver’);

var driver = new webdriver.Builder()
.forBrowser(‘chrome’)
.build();

driver.get(‘https://www.softpost.org’);
driver.quit();

Save above file with name s1.js To run above code, you can use below command.
 
node s1.js

Web development and Automation testing

solutions delivered!!

Logo
Courses
  • Automation Testing
About
  • About Me
Social Media
Copyright 2024 @ www.softpost.org