Most answered questions in Selenium

0 votes
1 answer

Gmail login fail using Selenium webdriver. Showing element not found for password

Try setting an implicit wait of maybe ...READ MORE

Dec 4, 2020 in Selenium by Gitika
• 65,910 points
1,416 views
0 votes
1 answer

Equivalent of waitForVisible/waitForElementPresent in Selenium WebDriver tests using Java?

Implicit and Explicit Waits Implicit Wait An implicit wait ...READ MORE

Dec 4, 2020 in Selenium by Gitika
• 65,910 points
1,026 views
0 votes
1 answer

Find div element by multiple class names?

I don't think Barak manos's answer has ...READ MORE

Dec 4, 2020 in Selenium by Gitika
• 65,910 points
18,555 views
0 votes
1 answer

Selenium::WebDriver::Error::JavascriptError: waiting for evaluate.js load failed Firefox 23

I had the same problem on Mac ...READ MORE

Dec 4, 2020 in Selenium by Gitika
• 65,910 points
522 views
0 votes
1 answer

org.openqa.selenium.WebDriverException: unknown error: call function result missing 'value'

I was seeing the same issue. The ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
2,876 views
0 votes
1 answer

What is the difference between webdriver.get() and webdriver.navigate()

The first thing you’ll want to do ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
920 views
0 votes
1 answer

Page scroll up or down in Selenium WebDriver (Selenium 2) using java

Scenario/Test steps: 1. Open a browser and navigate ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
639 views
0 votes
1 answer

How to switch tabs using Selenium WebDriver with Java?

psdbComponent.clickDocumentLink(); ArrayList<String> tabs2 = ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
4,730 views
0 votes
1 answer

Capturing browser logs with Selenium WebDriver using Java?

I assume it is something in the ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
2,497 views
0 votes
1 answer

Scrolling to element using webdriver?

You are trying to run Java code ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
707 views
0 votes
1 answer

Selenium WebDriver: I want to overwrite value in field instead of appending to it with sendKeys using Java

I think you can try to firstly ...READ MORE

Dec 3, 2020 in Selenium by Gitika
• 65,910 points
2,005 views
0 votes
1 answer

can't we use selenium for frontend testing ?

Hello @aminegac, If you need pretty icons, platform ...READ MORE

Dec 2, 2020 in Selenium by Niroj
• 82,880 points
616 views
0 votes
1 answer

Chropath extension doesnot comes in this webpage

@Faha You have to install that extension READ MORE

Dec 4, 2020 in Selenium by Bindu
534 views
0 votes
1 answer

How to click on a hyper link using linkText?

driver.findElement(By.linkText(“Google”)).click(); The command finds the element using link ...READ MORE

Nov 30, 2020 in Selenium by Gitika
• 65,910 points
1,373 views
0 votes
1 answer

How to handle frame in WebDriver?

An inline frame acronym as iframe is ...READ MORE

Nov 30, 2020 in Selenium by Gitika
• 65,910 points
400 views
0 votes
1 answer

When do we use findElement() and findElements()?

findElement(): findElement() is used to find the first ...READ MORE

Nov 30, 2020 in Selenium by Gitika
• 65,910 points
689 views
0 votes
1 answer

How to get Tooltip Text in Selenium Webdriver?

To get tooltip text in Selenium WebDriver, ...READ MORE

Nov 30, 2020 in Selenium by Gitika
• 65,910 points
1,787 views
0 votes
1 answer

How to Verify Tooltip using Selenium WebDriver?

Tooltips were traditionally implemented as a 'title' ...READ MORE

Nov 30, 2020 in Selenium by Gitika
• 65,910 points
423 views
+1 vote
1 answer

How to Download & Install Selenium WebDriver?

Selenium installation is a 3 step process: Install ...READ MORE

Nov 30, 2020 in Selenium by Gitika
• 65,910 points
503 views
0 votes
1 answer

Unable to find the chromedriver executable

Please download the server from http://code.google.com/p/chromedriver/downloads/list and place it ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
508 views
0 votes
1 answer

How to open a new tab using Selenium WebDriver?

The code below will open the link ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
608 views
0 votes
1 answer

How to run selenium (Firefox) web driver without a GUI?

Yes, it's possible to run Selenium on ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
733 views
0 votes
1 answer

unknown error: call function result missing 'value' for Selenium Send Keys even after chromedriver upgrade

After updating the Google Chrome browser to Version ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
1,399 views
0 votes
1 answer

How to get HTTP Response Code using Selenium WebDriver?

You can use BrowserMob proxy to capture ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
3,201 views
0 votes
1 answer

How do you make Selenium 2.0 wait for the page to load?

You can also check pageloaded using following ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
404 views
0 votes
1 answer

How do I find an element that contains specific text in Selenium WebDriver (Python)?

Try the following: driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]") I hope this ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
5,719 views
0 votes
1 answer

Is there a way to get element by XPath using JavaScript in Selenium WebDriver?

You can use the document.evaluate: Evaluates an XPath ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
3,613 views
0 votes
1 answer

How can I take a screenshot with Selenium WebDriver?

Yes, it is possible. The following example ...READ MORE

Nov 27, 2020 in Selenium by Gitika
• 65,910 points
356 views
0 votes
1 answer

I need help for below question as i need to submit the project...

Hi, @priyanka, Regarding your query, there are multiple ...READ MORE

Nov 26, 2020 in Selenium by Gitika
• 65,910 points
910 views
0 votes
1 answer

Error showing up, Unable to click the second page and get title. Any Solution?

Hi, @Faha, As you access the URL http://demo.automationtesting.in/Windows.html there ...READ MORE

Nov 25, 2020 in Selenium by Gitika
• 65,910 points
3,307 views
0 votes
1 answer

i cannot add chromedriver to my path on mac.what should i do? can you tell me full procedure? i am new to selenium.

Hello @Divya, You can refer this regarding your ...READ MORE

Nov 25, 2020 in Selenium by Niroj
• 82,880 points
663 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,910 points
68,355 views
0 votes
1 answer

when I run this code, my browser does not appear, it flashes and disappears.?

Hello, The driver. close() command is used to close the current browser ...READ MORE

Nov 23, 2020 in Selenium by Niroj
• 82,880 points
1,727 views
0 votes
1 answer

how to submit form without filling required fields and "Labels" of all the required fields printed on Console?

Hello, For your query you can refer this ...READ MORE

Nov 23, 2020 in Selenium by Niroj
• 82,880 points
1,627 views
0 votes
1 answer

Exception in thread "main" java.lang.IllegalStateException: The driver executable does not exist: how to solve it?

Your query is similar to https://www.edureka.co/community/46570/illegalstateexception-executable-automation-chromedriver Check it ...READ MORE

Nov 6, 2020 in Selenium by Sirajul
• 59,230 points
2,923 views
0 votes
1 answer

Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: call function result missing 'value'

Hey, I was seeing the same issue. ...READ MORE

Nov 1, 2020 in Selenium by Karan
• 19,610 points
3,976 views
0 votes
1 answer

NoClassDef Found Exception occured

Here are a few probable steps to ...READ MORE

Oct 30, 2020 in Selenium by Sandra
1,259 views
0 votes
1 answer

Suddenly my whole program will not run. It shows main error" Missing Type String"

It needs to upgrade the Compiler Compliance.  For ...READ MORE

Oct 29, 2020 in Selenium by Karan
• 19,610 points
5,427 views
0 votes
1 answer

When i give WebDriver driver=new ChromeDriver();

If you use ChromeDriver driver = new ChromeDriver(); the ChromeDriver instance ...READ MORE

Oct 23, 2020 in Selenium by Karan
• 19,610 points
6,270 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
39,779 views
+1 vote
1 answer

In Excel handling how is it that we call getRow() without creating object of XSSFSheet class.

In Excel file handling using Apache POI, ...READ MORE

Oct 7, 2020 in Selenium by Karan
• 19,610 points
496 views
0 votes
1 answer
0 votes
1 answer

hello i am valdating facebook page i have wrriten below code ingu button but it is not clicking on buttons

Hey @Jordan, What's the error you are ...READ MORE

Sep 28, 2020 in Selenium by Karan
• 19,610 points
470 views
+1 vote
1 answer

How to automate instagram login page using java in selenium?

Try the following: package com.company; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import ...READ MORE

Sep 15, 2020 in Selenium by Karan
• 19,610 points
6,427 views
+1 vote
1 answer

download all pdf file with selenium python

Try this code, it worked for me. options ...READ MORE

Sep 14, 2020 in Selenium by Karan
• 19,610 points
4,426 views
0 votes
1 answer
+1 vote
1 answer

selenium-python Downloading file Error -- "Failed -Download Error"

The path you declared for the default ...READ MORE

Sep 7, 2020 in Selenium by Sirajul
• 59,230 points
5,294 views
0 votes
1 answer

i know loosely coupled and highly cohesive

Check this out https://dzone.com/articles/microservice-testing ...READ MORE

Sep 1, 2020 in Selenium by Kim
644 views
0 votes
1 answer

Does cypress support api automation testing also?

When it comes to using Cypress, many ...READ MORE

Aug 31, 2020 in Selenium by Kim

edited Jul 19, 2023 by Khan Sarfaraz 627 views