Most answered questions in Selenium

0 votes
2 answers

Error:ElementNotVisibleException in selenium

The xpath that you are using is ...READ MORE

Feb 8, 2019 in Selenium by Disha
1,341 views
0 votes
2 answers

How to Change gmail login page settings

Hey @Suganth, from August 2018, google has ...READ MORE

Feb 6, 2019 in Selenium by Priyaj
• 58,090 points
3,907 views
0 votes
2 answers

System.setProperty is not recogonized in Eclipse.

Try adding the selenium jar files to ...READ MORE

Feb 5, 2019 in Selenium by Shashank
• 1,370 points
6,580 views
0 votes
2 answers

How to handle dropdowns in selenium?

Hey @Rishab, you can take a look ...READ MORE

Jan 23, 2019 in Selenium by Priyaj
• 58,090 points
694 views
0 votes
2 answers

How to use XPath Helper Tool?

How to Install XPath Helper Plugin for ...READ MORE

Apr 28, 2019 in Selenium by Ajay
8,720 views
0 votes
2 answers

Handling Combo-Box Drop downs in Selenium

Suggestion: Try to mimic the action with ...READ MORE

May 28, 2019 in Selenium by mary
11,451 views
0 votes
2 answers

How to open a link in a new tab?

try this :- driver.findElement(By.linkText("Business")).sendKeys(K ...READ MORE

Jan 11, 2019 in Selenium by kaloo
1,162 views
0 votes
2 answers

Drag and drop in selenium

WebElement dragale = driver.findElement(By.xpath("//*[@id=\"draggable\"]/p")); WebElement dropable = driver.findElement(By.xpath("//*[@id=\"droppable\"]")); Actions ...READ MORE

May 4, 2020 in Selenium by dragAndDrop(WebElement source, WebElemen
1,231 views
0 votes
2 answers

Is there a way to handle exceptions in testNG?

I don't think this should be a ...READ MORE

Jan 4, 2019 in Selenium by Vardhan
• 13,190 points
3,142 views
0 votes
2 answers

How to handle chrome notification in selenium?

Map<String, Object> prefs = new HashMap<String, Object>(); prefs.put("profile.default_content_setting_values.notifications", ...READ MORE

May 4, 2020 in Selenium by Mukti
• 140 points
5,287 views
0 votes
2 answers

What are the things we cannot automate using selenium?

1) Regression TC that require manual involvement ...READ MORE

Feb 27, 2020 in Selenium by Divya Krishnan
15,011 views
0 votes
2 answers

How to get the text from a website using selenium?

driver.findElement(By.cssSelector("p")).getText() or  IWebElement element = Browser.GetElementByCssSelector("div.loginbox p"); string text = ...READ MORE

Sep 6, 2020 in Selenium by Sri
• 3,190 points
25,124 views
+2 votes
2 answers

how to install firebug or firepath in firefox?

Hey @Charumatibahen, firebug is no more in ...READ MORE

Dec 28, 2018 in Selenium by Priyaj
• 58,090 points
18,711 views
0 votes
2 answers

How does prioritization helps in testing?

Hi , Lets consider a scenario u have ...READ MORE

Sep 2, 2020 in Selenium by Sri
• 3,190 points
624 views
0 votes
2 answers

What is the difference between / and // in xpath?

/ - Selects from the root node // ...READ MORE

May 29, 2019 in Selenium by anonymous
27,116 views
0 votes
2 answers

How to use relative xpath for locating a web-element by particular Attribute?

Xpath=//tagname[@attribute='value'] READ MORE

Sep 3, 2020 in Selenium by Sri
• 3,190 points
4,477 views
0 votes
2 answers

How to use link as a locator to find element in selenium?

driver.findElement(By.linkText("link")).click(); READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
1,231 views
0 votes
2 answers

How can I automate the process of adding a product to cart in Flipkart?

Hey @Jino, it was pretty good brain ...READ MORE

Dec 21, 2018 in Selenium by Nabarupa
13,239 views
0 votes
2 answers

How to use webdriver in selenium?

Hi, Selenium provides drivers specific to each browser ...READ MORE

Feb 21, 2020 in Selenium by surbhi
• 260 points
646 views
0 votes
2 answers

What is the best reporting tool that can be used with selenium?

I guess you can use the below ...READ MORE

Dec 20, 2018 in Selenium by Shuvodip
5,197 views
+1 vote
2 answers

How to get the title of a webpage using Selenium Java?

Essentially, driver.getTitle(); function can be used to ...READ MORE

Dec 17, 2018 in Selenium by Vardhan
• 13,190 points
15,309 views
+1 vote
2 answers

selenium-python Process unexpectedly closed with status 1

Hi paragf! I checked your code.  Firstly, there ...READ MORE

Sep 28, 2018 in Selenium by Omkar
• 69,210 points
4,798 views
0 votes
2 answers

How to get a page name using Selenium Webdriver (C#)?

String pageTitlte=driver.getTitle(); READ MORE

Sep 6, 2020 in Selenium by Sri
• 3,190 points
2,162 views
+4 votes
2 answers

gmail using selenium driver in eclipse

@letslearn, it seems like you have tried ...READ MORE

Sep 11, 2018 in Selenium by Vardhan
• 13,190 points
1,218 views
0 votes
2 answers

Tried doing automation of drop down with click or type into & select item.

Hello @Bharti, I was using the same ...READ MORE

Dec 20, 2018 in Selenium by Priyaj
• 58,090 points
463 views
0 votes
2 answers

How to know the exact time to load a page using Selenium WebDriver?

long start = System.currentTimeMillis(); driver.get("Some url"); long finish = ...READ MORE

Sep 6, 2020 in Selenium by Sri
• 3,190 points
7,513 views
0 votes
2 answers

What is the difference between BeforeClass and BeforeTest in TestNG - Selenium WebDriver

@Before and @After are called for every ...READ MORE

Mar 10, 2019 in Selenium by onlyfullstack
8,389 views
+1 vote
2 answers

Error: stale element reference: element is not attached to the page document

go to your code and apply implicit ...READ MORE

Dec 21, 2018 in Selenium by Malik
57,580 views
+1 vote
2 answers

Drop-down menu option value not working using Selenium (Python)

from selenium.webdriver.support.select import Select inputElementG ...READ MORE

Nov 28, 2018 in Selenium by Rijhu mal
14,471 views
0 votes
2 answers

Python: Using an existing google chrome profile with selenium chrome web driver

The problem is with the string "C:\Users\Eric\Desktop\beeline.txt" Here, \U starts an ...READ MORE

May 24, 2019 in Selenium by shinio llahsra
12,603 views
+1 vote
2 answers

Selenium IDE Click button error while clicking on Play Recording

Hello, There are a number of reasons that ...READ MORE

Nov 30, 2019 in Selenium by surbhi
• 260 points
1 flag 1,941 views
0 votes
2 answers

Get text using selenium web driver in python

text = driver.find_element_by_class_name("current-text").getText(); ...READ MORE

Feb 4, 2019 in Selenium by anonymous
37,689 views
0 votes
2 answers

How to solve the error while connecting real iOS device with Appium server?

Run Command 'ideviceinstaller in Terminal and found ...READ MORE

May 14, 2019 in Selenium by Siddharth
2,306 views
0 votes
2 answers

What is Page Object Model in Selenium WebDriver?

POM is one of design pattern. maintenance  should ...READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
1,190 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,551 views
0 votes
2 answers

How to get HTML Source of WebElement in Selenium WebDriver using Python?

If you want to get the html ...READ MORE

May 31, 2019 in Selenium by Atul Singh
39,411 views
0 votes
2 answers

Check that the element is clickable or not in Selenium WebDriver

Hi , you want to know only is ...READ MORE

Aug 31, 2020 in Selenium by Sri
• 3,190 points
33,323 views
0 votes
2 answers

Selenium WebDriver Error: AttributeError: 'list' object has no attribute 'click'

If you are going to use a ...READ MORE

Jan 17, 2020 in Selenium by lwazi
34,942 views
0 votes
2 answers

How to open a browser window in full screen using Selenium WebDriver with C#

Hi , we have inbuilt method Maximize(). driver.Manage().Wind ...READ MORE

Sep 6, 2020 in Selenium by Sri
• 3,190 points
15,579 views
0 votes
2 answers

what is the need of xpath when you have attributes like id ,class,name in selenium?

some of the controls not have id ...READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
1,573 views
0 votes
2 answers

What is following-sibling in selenium?

Xpath=//*[@type='text']//following::input[2] READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
11,319 views
+1 vote
2 answers

Is it possible to scroll down in a webpage using selenium webdriver programmed on python?

I using next code for facebook for ...READ MORE

May 16, 2019 in Selenium by mslavikas@gmail.com
25,584 views
0 votes
2 answers

How to test React JS dropdown with Selenium and java?

First of all you need to click ...READ MORE

Aug 20, 2019 in Selenium by ghoshPooja
• 140 points
16,931 views
0 votes
2 answers

How to close browser popup in Selenium WebDriver

driver.quit() READ MORE

Jun 14, 2019 in Selenium by anonymous
9,231 views
0 votes
2 answers

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

Facing Error Exception in thread "main" org.openqa.selenium .WebDriverException: unknown ...READ MORE

Mar 5, 2020 in Selenium by anonymous
9,791 views
+1 vote
2 answers

Is it possible to manually set the attribute value of a Web Element using Selenium?

WebDriver driver; JavascriptExecutor js = (JavascriptExecutor) driver; js.executeScript("document.getElementById('id123').setAttribute('attr', ...READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
26,740 views
0 votes
2 answers

When executing my Jenkins tests with Selenium WebDriver, I do not see a GUI.

Hi eLiJha, I also faced the same issue ...READ MORE

Jul 15, 2019 in Selenium by nayan
• 160 points
12,426 views
+1 vote
2 answers

I want the screenshot of only a specific element and not the entire page. Is it possible with Selenium Webdriver?

Hey @kappa3010, you can try this. Though ...READ MORE

Dec 31, 2018 in Selenium by Priyaj
• 58,090 points
21,313 views
+4 votes
2 answers

Can we get the HTTP Response Code in Selenium with Java?

It is indeed possible to get http ...READ MORE

Apr 21, 2018 in Selenium by king_kenny
• 3,710 points
40,451 views
0 votes
2 answers

Need Selenium to wait until the document is ready.

use  (JavascriptExecutor) driver).executeScript("return docum ...READ MORE

Sep 4, 2020 in Selenium by Sri
• 3,190 points
11,282 views