Skip to content

Software Testing Tutorials

  • Home
  • Selenium
    • selenium IDE tutorial
      • IDE Commands Part 1
      • IDE Commands Part 2
    • Selenium Webdriver Tutorial
      • Selenium Tutorial Part One
      • Selenium Tutorial Part Two
      • Selenium Advanced Tutorials
    • Selenium Data Driven Framework
    • 60 Selenium Interview Questions
    • Selenium Grid
      • Selenium Grid Tutorial
  • Appium Tutorials
    • Appium Tutorial Part One
    • Appium Tutorial Part Two
    • Advanced Appium Tutorial
    • Appium Interview Questions
      • Questions Part One
      • Questions Part Two
      • Questions Part Three
      • Questions Part Four
      • Questions Part Five
      • Questions Part Six
      • Questions Part Seven
  • JMeter Tutorial
  • Playwright Tutorial
  • Excel Guide
Search

Software Testing Tutorials

Close menu
  • Home
  • Selenium
    • selenium IDE tutorial
      • IDE Commands Part 1
      • IDE Commands Part 2
    • Selenium Webdriver Tutorial
      • Selenium Tutorial Part One
      • Selenium Tutorial Part Two
      • Selenium Advanced Tutorials
    • Selenium Data Driven Framework
    • 60 Selenium Interview Questions
    • Selenium Grid
      • Selenium Grid Tutorial
  • Appium Tutorials
    • Appium Tutorial Part One
    • Appium Tutorial Part Two
    • Advanced Appium Tutorial
    • Appium Interview Questions
      • Questions Part One
      • Questions Part Two
      • Questions Part Three
      • Questions Part Four
      • Questions Part Five
      • Questions Part Six
      • Questions Part Seven
  • JMeter Tutorial
  • Playwright Tutorial
  • Excel Guide

Software Testing Tutorials

Search Toggle menu

Category: Selenium

December 6, 2022June 19, 2025Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Getsize In Selenium

Selenium getSize() method You can get the browser window size using getSize() method in selenium. It will be helpful to get the […]

December 6, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium Set Window Size

Set browser window size in selenium Selenium has built in method to set size of browser window. You can use setSize() method to […]

December 5, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium Window Full Screen

Full Screen Window In Selenium Selenium fullscreen() method is used to full screen the browser window. It will perform browser full screen action […]

December 5, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium Minimize Window Of Browser

Minimize window in selenium  Selenium 4 has built in method to minimize the browser window. It is less used method in selenium […]

December 5, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium Maximize Window Of Browser

Maximize window in selenium You can maximize window in selenium using maximize() method. Every time you launch browser in selenium test, It […]

December 2, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium get url using getCurrentUrl()

Get url in selenium using getCurrentUrl() Method Sometimes you need to get the current url during selenium test. You can get the […]

December 1, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium close browser

Close browser in selenium using close() method To close browser in selenium, You can use close() method. It is used to close […]

December 1, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium getTitle() method to get title of page

Selenium get title using getTitle() method If you view source of page, You will find title of the page inside <title> and […]

November 30, 2022June 24, 2025Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium get attribute to get value of attribute

This guide will show you how to use Selenium get attribute to extract the value of any HTML attribute from a web […]

November 29, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium clear method

Selenium clear() method Selenium clear() method is used to clear text from input textbox or text area. Clear() method required when you […]

November 29, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium click element using click() method

Click element in selenium using click() method Selenium click element can be done using click() method. Click is most common action to […]

November 28, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium sendkeys() method to send text to input

sendKeys() method in selenium  sendKeys() in selenium is also one of the most used method. It is being used to type texts […]

November 26, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium findElement method

findElement() method in selenium findElement method is one of the most used method in selenium as it is used to fine element […]

November 24, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium get() method and navigate() method

Selenium get() method get() method in selenium is one from the many different methods available in webdriver interface. Selenium get() method is […]

November 23, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

System setproperty in selenium

What is System.setProperty? If you have noticed in selenium test case, You will find syntax System.setProperty. System is class name and setProperty(String key, String value) […]

November 23, 2022Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

First selenium test case in eclipse

First selenium test case in eclipse You are ready to write your first selenium test case in eclipse after installation and selenium […]

November 23, 2022April 11, 2025Selenium, selenium 4, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Download Selenium WebDriver JAR Files and Set Up in Eclipse

Step-by-step guide on how to download Selenium WebDriver JAR files and configure them in Eclipse IDE for Java automation testing.

November 21, 2022Selenium, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Download eclipse and installation in windows

Download eclipse You can download eclipse from official website. Eclipse IDE is useful to develop applications using Java language. Also you can […]

November 20, 2022Selenium, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Download the java and installation in windows

Download the java and installation process You need to download the java before java installation. Java is essential component to configure and […]

November 19, 2022June 24, 2025CSS selector in selenium, Element Locators, Selenium, selenium tutorial, selenium webdriver, selenium webdriver tutorial

CSS selector in selenium

This guide will show you how to use CSS Selector in Selenium to locate web elements accurately during test automation. You’ll learn […]

November 18, 2022find by linktext, Selenium, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Find element by link text in selenium

Selenium find element by link text Find element by link text is used only to locate hyperlinks on page. You can use By.linkText […]

November 17, 2022Element Locators, Selenium, selenium find element by name, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium find element by class name

Find element by class name selenium Selenium find element by class name used when there is class name available for element. Selenium […]

November 17, 2022Element Locators, Selenium, selenium find element by name, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium find element by name

Find element by name selenium Selenium find element by name is also another popular way to locate element. It uses name attribute […]

November 16, 2022Element Locators, Selenium, selenium find element by id, selenium tutorial, selenium webdriver, selenium webdriver tutorial

Selenium find element by id to locate element

Selenium find element by id Selenium find element by id is very useful and popular element locator among the all types of […]

June 2, 2020Selenium, Selenium 2, selenium tutorial, selenium webdriver, selenium webdriver tutorial, webdriver tutorials

Selenium WebDriver Test Automation on BrowserStack

BrowserStack is web cloud platform which provides us an environment to test web and mobile applications on different version combinations of OS […]

May 27, 2020June 18, 2025Selenium, Selenium 2, selenium tutorial, selenium webdriver, selenium webdriver tutorial, webdriver tutorials

Using deleteAllCookies() to Delete all cookies in Selenium WebDriver

Earlier we already learn different selenium webdriver methods to add cookie, get cookies detail by name and all cookies. Sometimes you also […]

May 25, 2020June 18, 2025Selenium, Selenium 2, selenium tutorial, selenium webdriver, selenium webdriver tutorial, webdriver tutorials

Using deleteCookieNamed() and deleteCookie() to delete cookies in selenium WebDriver

Earlier we learnt how to add cookie and get cookie details using different methods like addCookie(), getCookieNamed() and getCookies(). Sometimes you also need […]

May 22, 2020June 18, 2025Selenium, Selenium 2, selenium tutorial, selenium webdriver, selenium webdriver tutorial, webdriver tutorials

Using getCookies() to get all cookies and extracting in Selenium Webdriver

Any site can have single or multiple cookies. If you know cookie name then you can get it’s detail easily using getCookieNamed(). But […]

May 20, 2020June 18, 2025Selenium, Selenium 2, selenium tutorial, selenium webdriver, selenium webdriver tutorial, webdriver tutorials

How to use addCookie() and getCookieNamed() in Selenium WebDriver

Selenium webdriver add cookie and selenium webdriver get Cookie Named are very useful methods. Most of all you are already aware about browser […]

May 15, 2020June 18, 2025Selenium, Selenium 2, selenium tutorial, selenium webdriver, selenium webdriver tutorial, webdriver tutorials

Selenium maximize window using manage() method in Selenium WebDriver

manage() method is very basic which we are using to maximize window in selenium very frequently. You can use it to manage […]

Posts pagination

1 2 >
  • How to Take Screenshot in Playwright With Example
  • How to Perform Drag and Drop in Playwright
  • How to Upload Files in Playwright – Complete Guide
  • How to Clear Input Text Field Value in Playwright: 4 Ways
  • How to Press Keys in Playwright: Quick Guide

              
  • About Us
  • Contact Us
  • Terms of Service
  • Privacy Policy
© 2025 Software Testing Tutorials. Proudly powered by Sydney