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,441 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,038 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,810 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
542 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,918 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
946 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
663 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,791 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,546 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
724 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,067 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
637 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
549 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,403 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
428 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
701 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,817 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
438 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
536 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
529 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
623 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
750 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,408 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,249 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
422 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,788 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,636 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
369 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
931 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,377 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
681 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,862 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,760 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,649 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,968 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
4,032 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,289 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,519 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,348 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
40,346 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
510 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
480 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,524 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,483 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,389 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
658 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 654 views