Trending questions in Selenium

+11 votes
17 answers

How to automate gmail login process using selenium webdriver in java?

Check the below code: Here is the working ...READ MORE

Apr 24, 2018 in Selenium by Vardy
• 2,360 points
200,717 views
+1 vote
3 answers

How do I resolve the ElementNotInteractableException in Selenium WebDriver?

Hi Abish, ElementNotInteractableException occurs when an element is ...READ MORE

Aug 21, 2019 in Selenium by Abha
• 28,140 points

edited Aug 4, 2023 by Khan Sarfaraz 107,714 views
0 votes
8 answers

How to open a link in new tab of chrome browser using Selenium WebDriver?

This below code works for me in ...READ MORE

Dec 14, 2020 in Selenium by Gitika
• 65,770 points
103,742 views
0 votes
3 answers

How to close active/current tab without closing the browser in Selenium-Python?

While doing stuff with selenium multiple browsers ...READ MORE

Dec 14, 2020 in Selenium by Roshni
• 10,480 points
91,613 views
0 votes
3 answers

How to print text from a list of all web elements with same class name in Selenium?

Try using List <WebElement> to access all similar elements ...READ MORE

Dec 16, 2020 in Selenium by Roshni
• 10,480 points
88,944 views
+3 votes
6 answers

Verifying whether an element present or visible in selenium Webdriver

Below code will help you: To check Element ...READ MORE

Apr 17, 2018 in Selenium by king_kenny
• 3,710 points
97,849 views
0 votes
6 answers

How to specify "ENTER" button functionality in Selenium WebDriver code?

using OpenQA.Selenium.Interactions; Actions builder = new Actions(driver); ...READ MORE

Feb 13, 2019 in Selenium by anonymous
96,688 views
+1 vote
4 answers

Error: selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH

You can also handle this error with ...READ MORE

Nov 27, 2018 in Selenium by Srujan

edited Aug 4, 2023 by Khan Sarfaraz 92,868 views
0 votes
1 answer

How to resolve this error? Element not interactable ...Any solution?

Hi, @Faha, ElementNotInteractableException: Element is not reachable by ...READ MORE

Nov 24, 2020 in Selenium by Gitika
• 65,770 points
71,889 views
0 votes
4 answers

How to setup Chrome driver with Selenium on MacOS?

Hi Nushrat, In MacOs follow the steps and ...READ MORE

Aug 9, 2020 in Selenium by Shipra
79,634 views
+1 vote
5 answers

Getting this error: “Element is not clickable at point”

There are 3 possible solutions for this: 1. ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
83,749 views
0 votes
4 answers

Selenium Exception error -Element is not clickable at point (x, y). Other element would receive the click

If waitings for element, sleeps and oher ...READ MORE

Dec 13, 2019 in Selenium by Douglas
74,276 views
0 votes
0 answers

Chrome Driver has starting But Web socket connection is appearing as null.Tried without Firewall still same issue.Kindly help

WARNING: Invalid Status code=403 text=Forbidden java.io.IOException: Invalid Status ...READ MORE

Oct 15, 2024 in Selenium by anonymous

edited Mar 5 35 views
0 votes
0 answers

Selenium Webdriver Java - Eclipse java lang NoClassDefFoundError

package seleniumWithJava; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.edge.EdgeDriver; public class seleniumIntro ...READ MORE

Oct 1, 2024 in Selenium by nasima

edited Mar 5 57 views
0 votes
6 answers

How to get text found between span – selenium

The text "Search Zone" is not part ...READ MORE

Feb 28, 2019 in Selenium by Trying to Figure
76,770 views
0 votes
1 answer

How to input text in the text box without calling the sendKeys()?

driver.findElement(By.id("proj_cost")).sendKeys("5000&q ...READ MORE

Nov 16, 2023 in Selenium by anonymous

edited Mar 5 45,449 views
0 votes
3 answers

What is the difference between relative and absolute XPath?

Absolute Xpath: It contains the complete path ...READ MORE

Dec 20, 2018 in Selenium by Nabarupa
67,800 views
+1 vote
3 answers

Error occurred during initialization of boot layer java.lang.module.FindException: Module Selenium not found

This might probably be coz while creating ...READ MORE

Nov 27, 2019 in Selenium by Sirajul
• 59,230 points
60,224 views
0 votes
0 answers

How to download submitted assignment

Hi, How to download submitted assignment from website. READ MORE

Mar 2, 2024 in Selenium by anonymous

edited Mar 5 110 views
0 votes
5 answers

How to use JavaScript in selenium to click an Element?

WebElement element = driver.findElement(By.id("id")); JavascriptExe ...READ MORE

Aug 31, 2020 in Selenium by Sri
• 3,190 points
70,838 views
0 votes
1 answer

What is selenium grid?

Selenium Grid is an integral part of ...READ MORE

Nov 29, 2023 in Selenium by anonymous
• 3,360 points
607 views
0 votes
1 answer

How to handle dropdown in Selenium?

Handling dropdown menus in Selenium WebDriver can ...READ MORE

Nov 9, 2023 in Selenium by anonymous
• 3,360 points
752 views
0 votes
0 answers

Please tell me where to find chrome driver to support chrome browser Version 116.0.5845.188 .

Chrome driver used :114 Chrome browser :Version 116.0.5845.188 Selenium ...READ MORE

Sep 19, 2023 in Selenium by dildilshani

edited Mar 5 16 views
0 votes
1 answer

import org.openqa.selenium.* shows compilation error - The package org.openqa.selenium is not accessible even though I have added the external jar files in the class path.

Here's what you can try  Either keep only selenium-server-standalone-3.141.59.jar as ...READ MORE

Oct 7, 2020 in Selenium by Karan
• 19,610 points
45,557 views
+2 votes
3 answers

Selenium Webdriver + Java - Eclipse: java.lang.NoClassDefFoundError

I also faced this issue first time, ...READ MORE

Aug 28, 2019 in Selenium by Shraddha
73,649 views
0 votes
0 answers

expecting output "Correct mail-id"......but getting "email Adress must be valid" why??

def email_validation(id)          mail_id=@driver.find_element(:id,'email')       mail_id.send_keys(id);       var=mail_id.attribute('value')       puts"#{var}"       wait =Selenium::WebDriver::Wait.new(:timeout=>60)       if var.empty?          puts "email can't ...READ MORE

Aug 23, 2023 in Selenium by SEEMA
• 110 points

edited Mar 5 33 views
0 votes
0 answers

how to get text

hello , I have written this code ...READ MORE

Aug 23, 2023 in Selenium by SEEMA
• 110 points

edited Mar 5 33 views
0 votes
0 answers

How to automate selecting options when Right click on Chrome using selenium python?

The scenario is like this, When we ...READ MORE

Aug 3, 2023 in Selenium by anonymous
• 110 points

edited Mar 5 30 views
+1 vote
4 answers

Need to wait until page is completely loaded - Selenium WebDriver

You can try something like -  new WebDriverWait(firefoxDriver, ...READ MORE

Dec 21, 2019 in Selenium by Robin
64,823 views
0 votes
3 answers

What are the different ways to select an option from a dropdown using Selenium Webdriver?

So follow this steps for solution: First click ...READ MORE

Dec 16, 2020 in Selenium by Roshni
• 10,480 points
52,651 views
0 votes
0 answers

Extent Repots in Selenium using python

looking to configure extent reports in selenium ...READ MORE

May 24, 2023 in Selenium by PrudhviM

edited Mar 5 15 views
0 votes
0 answers

Need doc with respect to mac settings

The reference doc, finding difficult to follow ...READ MORE

Apr 26, 2023 in Selenium by Sreepriya

edited Mar 5 34 views
0 votes
0 answers

How to extract text from pdf and copy to system clipboard ?

Pdf is generated in ui and we ...READ MORE

Apr 5, 2023 in Selenium by Kaviya

edited Mar 5 26 views
0 votes
0 answers

How to handle amazon cognito authentication pop-up using java selenium.

I have a website where post clicking ...READ MORE

Mar 16, 2023 in Selenium by anonymous

edited Mar 5 39 views
0 votes
0 answers

I want to create excel driven framework in selenium java

I m working on selenium java framework, ...READ MORE

Feb 28, 2023 in Selenium by Rajat

edited Mar 5 21 views
0 votes
0 answers

Cannot find class in classpath in selenium

[RemoteTestNG] detected TestNG version 7.4.0 org.testng.TestNGException: Cannot find ...READ MORE

Feb 17, 2023 in Selenium by Tinju

edited Mar 4 17 views
0 votes
0 answers

org.openqa.selenium.NoSuchElementException: Timed out after 10 seconds. Element not found

Getting "org.openqa.selenium.NoSuchElementException: Timed out after 10 seconds. ...READ MORE

Feb 14, 2023 in Selenium by anonymous

edited Mar 4 36 views
0 votes
0 answers

java.lang.NoClassDefFoundError: org/openqa/selenium/WebDriver

I added all the selenium  jars in ...READ MORE

Feb 10, 2023 in Selenium by anonymous

edited Mar 4 37 views
0 votes
0 answers

Can we automate React app using selenium?

Can we automate React app using selenium? READ MORE

Jan 19, 2023 in Selenium by Sukanya

edited Mar 4 39 views
0 votes
0 answers

How to handle auto suggestions in selenium

How we can inspect an auto suggestion ...READ MORE

Dec 25, 2022 in Selenium by Shaswati

edited Mar 4 20 views
0 votes
5 answers

Moving mouse pointer to a specific location or element using C# and Selenium

n order to perform a 'mouse hover' ...READ MORE

Dec 16, 2020 in Selenium by Gitika
• 65,770 points
50,769 views
0 votes
0 answers
+1 vote
4 answers

How to get typed text from a textbox by using Selenium Webdriver?

Hey Ashmita, to get the typed text ...READ MORE

Jun 25, 2019 in Selenium by Abha
• 28,140 points
40,905 views
0 votes
5 answers

How to scroll down a webpage in selenium using Java?

 to scroll up or down with Selenium, a JavaScript executor is a ...READ MORE

Dec 16, 2020 in Selenium by Roshni
• 10,480 points
44,922 views
0 votes
1 answer

System.setProperty("webdriver.chrome.driver","") meaning?

The meaning of the statement are almost ...READ MORE

Jan 8, 2019 in Selenium by Nabarupa
59,766 views
0 votes
0 answers

How can I generate a report for a specific class?

I have a Selenium project that uses ...READ MORE

Oct 14, 2022 in Selenium by Tebogo

edited Mar 4 19 views
0 votes
2 answers

Difference between Action and Actions in Selenium

 Actions class is based on builder design pattern ...READ MORE

Jun 21, 2019 in Selenium by virendra

edited Jul 26, 2019 57,482 views
0 votes
1 answer

what is hybrid framework in selenium?

Hybrid framework is mixed with two or ...READ MORE

Jun 15, 2022 in Selenium by Mukesh

edited Mar 5 3,209 views