Pages

Saturday, March 7, 2020

Selenium Installation On Windows




Monday, April 28, 2014

USEFUL SITES FOR SELENIUM AUTOMATION

http://software-testing-tutorials-automation.blogspot.in/2013/08/how-to-download-and-install-selenium.html
http://seleniumtwo.blogspot.in/2013/07/testnganteclipse-xslt-report-generation.html
http://qtpselenium.com/selenium-tutorial/install-selenium/
https://groups.google.com/forum/#!topic/webdriver/1HaRueqm5XY
http://selenium-suresh.blogspot.in/2013/02/ant-generating-selenium-reports-using.html
http://www.logicandtricks.com/articles/taking-screen-shot-using-selenium-webdriver
http://seleniumwebdrivertips.blogspot.in/2012/10/how-to-take-screenshot-of-window-using.html
http://www.abodeqa.com/2013/09/18/webdrivers-most-popular-commands/

To check Element Present
====================
To check Element Present

Tooltip with Selenium Web driver
===========================
Tooltip with Selenium Web driver

IDE Installation
=============
IDE Installation

TestNG Tutorials
==============
TestNG Tutorials

Setting up TestNG with Eclipse-install
==============================
Setting up TestNG with Eclipse
Setting up TestNG install

How to set download options firefox to new profile to download file automatically using webdriver?
==================================================================
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.download.manager.showWhenStarting", false);
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "image/jpg, text/csv,text/xml,application/xml,application
/vnd.ms-excel,application/x-excel,application/x-msexcel,application/excel,application/pdf");
profile.setPreference("browser.download.dir", System.getProperty("user.home"));
WebDriver driver=new FirefoxDriver(profile);

Downloading a file using Web Driver and TestNG(Robot Class)
==================================================
Downloading a file using Web Driver and TestNG(Robot Class)

Open folder or directory in Windows 7 using java
========================================
Open folder or directory in Windows 7 using java

WebDriver’s most popular Commands
===============================
WebDriver’s most popular Commands

Verifying ToolTip information by enabling javascript in browser
===================================================
Verifying ToolTip information by enabling javascript in browser

Handling JavaScript alerts using WebDriver
===================================
Handling JavaScript alerts using WebDriver

Checking and Unchecking Web Checkbox
=================================
Checking and Unchecking Web Checkbox
@SuppressWarnings("unused") WebDriver driver2 = Methods.Configuration(driver); WebElement chkbx1=driver.findElement(By.xpath("//span[@name='VIEW']")); if(chkbx1.getAttribute("class").contains("checked")) { System.out.println("Checkbox is already checked"); } else { System.out.println("Checkbox is not checked"); chkbx1.click(); System.out.println("Checked the checkbox"); } }


http://santoshsarmajv.blogspot.in/2013/09/generating-random-data.html
http://www.java2share.com/FAQs/JDBC_faqsa.php?page=2#3
http://www.java2novice.com/jdbc/create-connection/
http://seleniumsimplified.com/2012/08/fluentwait-with-webelement/

Filling In Forms-Selecting all values in the table
===================================================
Filling In Forms-Selecting all values in the table

WebElement selectElement = driver.findElement(By.cssSelector("table-wrapper"));
java.util.List allOptions=selectElement.findElements(By.tagName("td"));
for (WebElement option : allOptions)
{
option.click();}
}
How to retrieve web table content using Selenium WebDriver
============================================================
How to retrieve web table content using Selenium WebDriver

Want current date and time in “dd/MM/yyyy HH:mm:ss.SS” format
==============================================================
Want current date and time in “dd/MM/yyyy HH:mm:ss.SS” format

Tuesday, January 8, 2013