ALL >> Education >> View Article
Selenium Webdriver Methods- Selenium Online Training
1. Creating New Instance Of Firefox Driver – this will open an new Empty browser
WebDriver driver = new FirefoxDriver();
2. Command To Open URL In Browser
driver.get(“http://selenium-suresh.blogspot.com”);
This syntax will open specified URL of software web application in web browser.
3. Clicking on any element or button of webpage
driver.findElement(By.id(“id of any element or button”)).click();
4. Store text of targeted element in variable – This will retrieve text from targeted element of software web application page and will store it in variable = suresh
String suresh = driver.findElement(By.tagName(“select”)).getText();
5. Typing text in text box or text area.
driver.findElement(By.name(“txtboxname”)).sendKeys(“My First Name”);
6. Applying Implicit wait in webdriver – This syntax will force webdriver to wait for 15 seconds if an element not found on the page of a software web application.
driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);
7. Applying Explicit wait in webdriver – This will wait for 15 ...
... seconds for the expected text “Time left: 7 seconds” to appear on the targeted element.
WebDriverWait wait = new WebDriverWait(driver, 15);
wait.until(ExpectedConditions.textToBePresentInElementLocated(By.xpath(“xpathofelement”), “Time left: 7 seconds”));
8. Get page title in selenium webdriver
driver.getTitle();
9. Get the Current Page URL In Selenium WebDriver- It will retrieve the current page URL and you can use it to compare with your expected URL.
driver.get current URL();
10. Get domain name using javascript executor – This will retrieve your software application’s domain name using web driver's java script executor interface and store it into the variable.
JavascriptExecutor javascript = (JavascriptExecutor) driver;
String CurrentURLUsingJS=(String)javascript.executeScript(“return document.domain”);
For more details please visit: https://nareshit.com/selenium-online-training/
Add Comment
Education Articles
1. Mastering The Digital Landscape Beyond The Walls: Your Guide To Osp Certification TrainingAuthor: Passyourcert
2. Best Online Ai Ml Courses | Ai And Ml Training
Author: hari
3. B Tech Courses And B Tech Admission 2025 | Bennett University
Author: Rohit Ridge
4. Discover The Benefits Of Learning Mandarin In Middle Village
Author: Jony
5. Best Microsoft Fabric Online Training Course | Visualpath
Author: Visualpath
6. Best Site Reliability Engineering Training Alongside Sre Courses Online
Author: krishna
7. Large Language Model (llm) Courses | At Visualpath
Author: gollakalyan
8. Unlocking Bilingual Excellence: Your Guide To Chinese Language Education In Middle Village
Author: John
9. How Sleep Impacts Learning And Behaviour For Toddlers?
Author: elzee preschool and daycare
10. Sap Datasphere Course | Sap Datasphere Training
Author: naveen
11. Fashion Design Course In Pune: Crafting Your Path To A Stylish Future
Author: skilloradesignacademy
12. Graphic Design Course In Pune: Unleashing Creativity And Skill Development
Author: skilloradesignacademy
13. Boost Your Career With Digital Marketing Classes In Ahmedabad | Sdm
Author: Rohit Shelwante
14. Achieving Mastery: The Definitive Guide To Osp Certification Online Training And The Bicsi Outside Plant Designer Credential
Author: NYTCC
15. Best Microsoft Ax Training Courses For Career Growth
Author: Pravin






