<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>SOFTWARE TESTING by Vignesh Velayutham</title>
      <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup</link>
      <description>ALL CODES - 
SYNTAX -
INTERVIEW Q/A</description>
      <language>en-us</language>
      <pubDate>2021-10-20 08:11:28 UTC</pubDate>
      <lastBuildDate>2023-07-29 04:05:27 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>TEXT BOX , BUTTON</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829710988</link>
         <description><![CDATA[<div>package com.Automation;<br><br><br>import org.openqa.selenium.By;<br>import org.openqa.selenium.chrome.ChromeDriver;<br><br>public class Controls {<br>	public static void main(String args[]) {<br>		System.setProperty("webdriver.chrome.driver","D:\\Driver\\chromedriver.exe");<br>		 ChromeDriver driver = new ChromeDriver();<br>		 //webpage URL<br>		driver.get("https://www.facebook.com/");<br>		//text box<br>		driver.findElement(By.xpath("//*[@id=\"email\"]")).sendKeys("xyz@gmail.com");<br>		driver.findElement(By.xpath("//*[@id=\"pass\"]")).sendKeys("123456789");<br>		driver.findElement(By.name("login")).click();<br>		<br>		}<br>	<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:18:44 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829710988</guid>
      </item>
      <item>
         <title>DROP BOX</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829713246</link>
         <description><![CDATA[<div>package com.Automation;<br><br><br>import org.openqa.selenium.By;<br>import org.openqa.selenium.Keys;<br>import org.openqa.selenium.WebElement;<br>import org.openqa.selenium.chrome.ChromeDriver;<br><br>public class Controls1 {<br><br>	public static void main(String[] args) {<br>		System.setProperty("webdriver.chrome.driver","D:\\Driver\\chromedriver.exe");<br>		 ChromeDriver driver = new ChromeDriver();<br>		 driver.get("file:///D:/Automation/hjkhk.html");<br>		 //drop box&nbsp; method<br>		 WebElement cb=driver.findElement(By.id("s1"));<br>		 cb.click();&nbsp; &nbsp;<br>		 cb.sendKeys("Volvo");&nbsp;<br>		 cb.sendKeys(Keys.ENTER);&nbsp;<br>		 driver.findElement(By.xpath("/html/body/form[2]/input[2]")).click();<br>		 driver.findElement(By.xpath("/html/body/form[1]/input[2]")).click();<br><br><br>	}<br><br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:20:02 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829713246</guid>
      </item>
      <item>
         <title>LINK &amp; IMPLICIT WAIT</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829717683</link>
         <description><![CDATA[<div>package com.Automation;<br><br>import java.util.concurrent.TimeUnit;<br><br>import org.openqa.selenium.By;<br>import org.openqa.selenium.chrome.ChromeDriver;<br><br>public class link {<br>	public static void main(String []args) {<br>		System.setProperty("webdriver.chrome.driver","D:\\Driver\\chromedriver.exe");<br>		ChromeDriver driver=new ChromeDriver();<br>		driver.manage().window().maximize();<br>		driver.get("https://www.google.com/");<br>		driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);<br>		driver.findElement(By.linkText("About")).click();<br>		driver.quit();<br>		<br>	}<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:22:27 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829717683</guid>
      </item>
      <item>
         <title>FIND FULL LINK</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829719784</link>
         <description><![CDATA[<div>package com.Automation;<br><br><br>import org.openqa.selenium.By;<br>import org.openqa.selenium.WebDriver;<br>import org.openqa.selenium.WebElement;<br>import org.openqa.selenium.chrome.ChromeDriver;<br><br>public class finfalllinks {<br><br>	<br>		public static void main(String[] args) {<br>		<br>			System.setProperty("webdriver.chrome.driver", "D:\\driver\\chromedriver.exe");<br>			WebDriver driver = new ChromeDriver();<br>			driver.manage().window().maximize();<br>			driver.get("https://alphagroup.edu/arts-science/index.php");<br><br>			java.util.List&lt;WebElement&gt; links = driver.findElements(By.tagName("a"));<br><br>			System.out.println(links.size());<br><br>			for (int i = 1; i&lt;=links.size(); i=i+1)<br><br>			{<br><br>			System.out.println(links.get(i).getText());<br><br>			}<br><br>			}<br><br><br><br>			<br><br><br><br>		<br>		<br>		<br>		<br>	<br>	}<br><br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:23:36 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829719784</guid>
      </item>
      <item>
         <title>MOUSE OVER</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829721280</link>
         <description><![CDATA[<div>package com.Automation;<br><br>import org.openqa.selenium.By;<br>import org.openqa.selenium.WebElement;<br>import org.openqa.selenium.chrome.ChromeDriver;<br>import org.openqa.selenium.interactions.Actions;<br><br>public class mouseover {<br><br>	public static void main(String[] args) {<br>		System.setProperty("webdriver.chrome.driver","D:\\Driver\\chromedriver.exe");<br>		ChromeDriver driver=new ChromeDriver();<br>		driver.manage().window().maximize();<br>		driver.get("http://www.training-in-chennai.com/");<br>		WebElement m=driver.findElement(By.xpath("/html/body/div[4]/header/div[2]/div/div/div/nav/div[2]/ul/li[3]/a"));<br>		WebElement s=driver.findElement(By.xpath("/html/body/div[4]/header/div[2]/div/div/div/nav/div[2]/ul/li[3]/ul/li[2]/a"));<br>		Actions act =new Actions(driver);<br>		act.moveToElement(m).moveToElement(s).click().build().perform();<br>	}<br><br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:24:16 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829721280</guid>
      </item>
      <item>
         <title>TESTNG (NEXT GENERATION) ANOTATIONS</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829728913</link>
         <description><![CDATA[<div>package testngdemo;<br><br>import org.testng.annotations.AfterClass;<br>import org.testng.annotations.AfterMethod;<br>import org.testng.annotations.BeforeClass;<br>import org.testng.annotations.BeforeMethod;<br>import org.testng.annotations.Test;<br><br>public class ClassOne {<br>@BeforeClass<br>public void beforeclass() {<br>	System.out.println("Beforeclass");<br>}<br>@AfterClass<br>public void afterclass() {<br>	System.out.println("afterclass");<br>}<br>@BeforeMethod<br>public void beforemethod() {<br>	System.out.println("Before Method");<br>}<br>@AfterMethod<br>public void Aftermethod() {<br>	System.out.println("After Method");<br>}<br>@Test<br>public void test2() {<br>	System.out.println("Test2");<br>}<br>@Test<br>public void test3() {<br>	System.out.println("Test3");<br>}<br>@Test<br>public void test4() {<br>	System.out.println("Test 4");<br>	<br>}<br>}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:28:25 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829728913</guid>
      </item>
      <item>
         <title>DRAG AND DROP &amp; EXPLICIT WAIT</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829736172</link>
         <description><![CDATA[<div>package com.AnotationEx1;<br>import org.openqa.selenium.By;<br>import org.openqa.selenium.WebDriver;<br>import org.openqa.selenium.WebElement;<br>import org.openqa.selenium.chrome.ChromeDriver;<br>import org.openqa.selenium.interactions.Actions;<br>import org.openqa.selenium.support.ui.ExpectedConditions;<br>import org.openqa.selenium.support.ui.WebDriverWait;<br>import org.testng.Assert;<br>import org.testng.annotations.Test;<br><br>public class AnotationEx2 {<br>	<br>	<br>		WebDriver driver;<br><br>		@Test<br>		public void testDragAndDropExample() {<br>		System.setProperty("webdriver.chrome.driver","D:\\driver\\chromedriver.exe");<br>		&nbsp; &nbsp; driver = new ChromeDriver();<br>		driver.manage().window().maximize();<br>		driver.get("http://jqueryui.com/droppable/");<br>		<br><br>		//Wait for the frame to be available and switch to it<br>		WebDriverWait wait = new WebDriverWait(driver, 5);<br>		wait.until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.cssSelector(".demo-frame")));<br><br>		WebElement Sourcelocator = driver.findElement(By.cssSelector(".ui-draggable"));<br>		WebElement Destinationlocator = driver.findElement(By.cssSelector(".ui-droppable"));<br>		dragAndDrop(Sourcelocator,Destinationlocator);<br><br>		//checkpoint<br>		String actualText=driver.findElement(By.cssSelector("#droppable&gt;p")).getText();<br>		Assert.assertEquals(actualText, "Dropped!");<br>		}<br>		public void dragAndDrop(WebElement sourceElement, WebElement destinationElement)<br>		&nbsp; &nbsp; {<br>		&nbsp; &nbsp; &nbsp; &nbsp;(new Actions(driver)).dragAndDrop(sourceElement, destinationElement).perform();<br>		&nbsp; &nbsp; }<br>		}<br>	<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:32:20 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829736172</guid>
      </item>
      <item>
         <title>1.SCROLLING TO BOTTOM OF A PAGE</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829746595</link>
         <description><![CDATA[<div>package com.Testng;<br><br><br>	import org.openqa.selenium.By;<br>	import org.openqa.selenium.WebDriver;<br>	import org.openqa.selenium.chrome.ChromeDriver;<br>	import org.testng.annotations.AfterClass;<br>	import org.testng.annotations.BeforeSuite;<br>	import org.testng.annotations.Test;<br>	import org.openqa.selenium.JavascriptExecutor;<br>	<br>	public class TestNG {		<br>		 WebDriver driver;<br>		String URL = "https://www.linkedin.com/";<br><br>		@BeforeSuite<br>		public void setUp() {<br>		System.setProperty("webdriver.chrome.driver", "D:\\driver\\chromedriver.exe");<br>		driver = new ChromeDriver();<br>		driver.get(URL);<br>		driver.manage().window().maximize();<br>		}<br><br>		@Test()<br>		public void scrollingToBottomofAPage() {<br>		((JavascriptExecutor) driver).executeScript("window.scrollTo(0, document.body.scrollHeight)");<br>		driver.findElement(By.linkText("Companies")).click();<br>		}<br><br><br><br><br>		@AfterClass<br>		public void tearDown() {<br>		//driver.quit();<br><br>	}<br>	}<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:37:56 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829746595</guid>
      </item>
      <item>
         <title>2.SCROLLING TO ELEMENT  OF A PAGE</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829747901</link>
         <description><![CDATA[<div>package pagescroll;<br>import org.openqa.selenium.By;<br>import org.openqa.selenium.WebDriver;<br>import org.openqa.selenium.WebElement;<br>import org.openqa.selenium.chrome.ChromeDriver;<br>import org.testng.annotations.BeforeSuite;<br>import org.testng.annotations.Test;<br>import org.openqa.selenium.JavascriptExecutor;<br>public class Pagescrollpart2 {<br>	public static WebDriver driver;<br>	String URL = "https://www.linkedin.com/";<br><br>	@BeforeSuite<br>	public void setUp() {<br>	System.setProperty("webdriver.chrome.driver", "D:\\driver\\chromedriver.exe");<br>	driver = new ChromeDriver();<br>	driver.get(URL);<br>	driver.manage().window().maximize();<br>	}<br>	@Test()<br>	public void scrollingToElementofAPage() throws InterruptedException {<br><br>	WebElement element = driver.findElement(By.linkText("Marketing"));<br>	((JavascriptExecutor) driver).executeScript(<br>	&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "arguments[0].scrollIntoView();", element);<br><br>	}<br><br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:38:41 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829747901</guid>
      </item>
      <item>
         <title>3.SCROLLING BY COORDINATES OF A PAGE</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829749442</link>
         <description><![CDATA[<div>package pagescroll;<br>import org.openqa.selenium.By;<br>import org.openqa.selenium.WebDriver;<br>import org.openqa.selenium.WebElement;<br>import org.openqa.selenium.chrome.ChromeDriver;<br>import org.testng.annotations.BeforeSuite;<br>import org.testng.annotations.Test;<br>import org.openqa.selenium.JavascriptExecutor;<br>public class PageScrollpart3 {<br>	public static WebDriver driver;<br>	String URL = "https://www.linkedin.com/";<br><br>	@BeforeSuite<br>	public void setUp() {<br>	System.setProperty("webdriver.chrome.driver", "D:\\driver\\chromedriver.exe");<br>	driver = new ChromeDriver();<br>	driver.get(URL);<br>	driver.manage().window().maximize();<br>	}<br>	@Test<br>	public void scrollingByCoordinatesofAPage() {<br><br>	((JavascriptExecutor) driver).executeScript("window.scrollBy(0,5000)");<br>	}<br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-10-20 08:39:31 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829749442</guid>
      </item>
      <item>
         <title>1.SCROLLING TO BOTTOM OF A PAGE</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829753062</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/936683d03393e86edf3cef9fad98c24e/WhatsApp_Image_2021_10_20_at_12_20_05_PM.jpeg" />
         <pubDate>2021-10-20 08:41:29 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829753062</guid>
      </item>
      <item>
         <title>2.SCROLLING TO ELEMENT  OF A PAGE</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829753644</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/3e86a9d0a77ea7cdd144b17611257d5b/WhatsApp_Image_2021_10_20_at_12_20_05_PM__1_.jpeg" />
         <pubDate>2021-10-20 08:41:48 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829753644</guid>
      </item>
      <item>
         <title>3.SCROLLING BY COORDINATES OF A PAGE</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829754141</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/a9c08fd35039bcd651892aa6d5257f35/WhatsApp_Image_2021_10_20_at_12_20_06_PM.jpeg" />
         <pubDate>2021-10-20 08:42:04 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829754141</guid>
      </item>
      <item>
         <title>DRAG &amp; DROP , EXPLICIT WAIT</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829762041</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/fe3b7c2b206bb2d95b97269de189257a/image.png" />
         <pubDate>2021-10-20 08:46:32 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829762041</guid>
      </item>
      <item>
         <title>TEXT BOX, BUTTON</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829771610</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/79b0ac187a6a96dc1e22b746b45f7151/image.png" />
         <pubDate>2021-10-20 08:51:39 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829771610</guid>
      </item>
      <item>
         <title>DROP BOX</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829772411</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/d939cee3443538b09fc916308be7dc2c/image.png" />
         <pubDate>2021-10-20 08:52:04 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829772411</guid>
      </item>
      <item>
         <title>LINK &amp; IMPLICIT WAIT</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829773646</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/a80e38da263db43a3a77cce1a423d2de/image.png" />
         <pubDate>2021-10-20 08:52:41 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829773646</guid>
      </item>
      <item>
         <title>FIND FULL LINK</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829774558</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/3263ef1c2714fcb453300dd44682c882/image.png" />
         <pubDate>2021-10-20 08:53:11 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829774558</guid>
      </item>
      <item>
         <title>MOUSE OVER</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829775477</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/5d1ab9299255aef847d688760569cd1f/image.png" />
         <pubDate>2021-10-20 08:53:37 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829775477</guid>
      </item>
      <item>
         <title>PART 1 </title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829806076</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/e2fea4bf27308f6b7872ed2ba3b484a9/Selenium_interview_question_and_answer_part_1.docx" />
         <pubDate>2021-10-20 09:10:27 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829806076</guid>
      </item>
      <item>
         <title>PART 2</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829806839</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/2325d027d86de5f78fa696ec423f135b/selenium_interview_question_and_answer_part_2.docx" />
         <pubDate>2021-10-20 09:10:54 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829806839</guid>
      </item>
      <item>
         <title>PART 1</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829809460</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/924d4dd10982f9e1ccc05387149b1610/java_interview_questons_part_1.docx" />
         <pubDate>2021-10-20 09:12:24 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829809460</guid>
      </item>
      <item>
         <title>PART2</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829810363</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/81c6bab1f4d13f17ddd573b39f183eed/java_interview_questions_part2.docx" />
         <pubDate>2021-10-20 09:12:53 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829810363</guid>
      </item>
      <item>
         <title>PART 3</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829811179</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/6281a9cbaacb16e91854e634ef58b0e5/Java_interview_questions_part_3.docx" />
         <pubDate>2021-10-20 09:13:19 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829811179</guid>
      </item>
      <item>
         <title>JAVA +SELENIUM SYLLABUS</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829835148</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/a368022ba5c50031ef0f5dbe9fa2c938/JAVA___SELENIUM_AUTOMATION_TESTING_SYLLABUS.pdf" />
         <pubDate>2021-10-20 09:27:01 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829835148</guid>
      </item>
      <item>
         <title>MANUAL TESTING SYLLABUS</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829836283</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/ecb22e69a8528ba12ab494a35ef5ea29/MANUAL_TESTING_SYLLABUS.pdf" />
         <pubDate>2021-10-20 09:27:42 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1829836283</guid>
      </item>
      <item>
         <title>I FRAME</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1841308362</link>
         <description><![CDATA[<div>package com.TestNG;<br><br>	import java.util.concurrent.TimeUnit;<br>	import org.openqa.selenium.By;<br>	import org.openqa.selenium.WebDriver;<br>	import org.openqa.selenium.chrome.ChromeDriver;<br>	//import org.openqa.selenium.firefox.FirefoxDriver;<br>	import org.testng.annotations.BeforeTest;<br>	import org.testng.annotations.Test;<br>	public class Iframe {<br>	WebDriver driver;<br>	@BeforeTest<br>	public void setup() throws Exception {<br>	System.setProperty("webdriver.chrome.driver","D://driver//chromedriver.exe");<br>	driver = new ChromeDriver();<br>	 driver.manage().window().maximize();<br>	 driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);<br>	 driver.get("http://only-testing-blog.blogspot.in/2015/01/iframe1.html");<br>	}<br><br>	@Test<br>	public void handleFrames(){<br>	&nbsp;<br>	 //Working with Iframe1 elements<br>	 //switch to frame1 and select cow checkbox from table. frame1 Is ID of frame.<br>	 driver.switchTo().frame("frame1");<br>	 driver.findElement(By.xpath("//td[contains(text(),'Cow')]/preceding-sibling::td/input[@type='checkbox']")).click();<br>	&nbsp;<br>	 //Switch back to page content.<br>	 driver.switchTo().defaultContent();<br>	&nbsp;<br>	 //Working with Iframe2 elements<br>	 //switch to frame2 and select I have a boat checkbox.&nbsp; frame2 Is ID of frame.<br>	 driver.switchTo().frame("frame2");<br>	 driver.findElement(By.xpath("//input[@value='Boat']")).click();<br>	&nbsp;<br>	 //switch back to page to Inserting some text In Country textbox of page.<br>	 driver.switchTo().defaultContent();<br>	 driver.findElement(By.xpath("//input[@name='Country']")).sendKeys("your country");<br>	}<br>	}<br><br>	<br><br></div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/40d3bb5592048d8de1fa629003b77c1c/image.png" />
         <pubDate>2021-10-25 11:15:20 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1841308362</guid>
      </item>
      <item>
         <title>ALERT HANDLING</title>
         <author>vigneshvelayutham381</author>
         <link>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1841353196</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/667402226/26ddabaed7027102e50616e0054f61e1/image.png" />
         <pubDate>2021-10-25 11:41:33 UTC</pubDate>
         <guid>https://padlet.com/vigneshvelayutham381/tcxc56i8qy8ivlup/wish/1841353196</guid>
      </item>
   </channel>
</rss>
