Latest questions in Selenium

0 votes
1 answer

How to locate an element by tagname?

TagName can be used with Group elements ...READ MORE

Jan 17, 2019 in Selenium by Frankie
• 9,830 points
843 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,767 views
0 votes
1 answer

How to Install XPath Helper Plugin for Chrome Browser?

1) Go to https://chrome.google.com/webstore/detail/xpath-helper/hgimnogjllphhhkhlmebbmlgjoejdpjl?hl=en 2) Click on Add to Chrome. 3) ...READ MORE

Jan 17, 2019 in Selenium by Frankie
• 9,830 points
3,165 views
0 votes
1 answer

What is the difference between JUnit and TestNG?

JUnit    TestNG It is opensource testing framework. It is ...READ MORE

Jan 17, 2019 in Selenium by Rishab
• 1,490 points
3,393 views
0 votes
1 answer

What is the difference between HUB and NODE?

Hub:- It is the central point where you ...READ MORE

Jan 14, 2019 in Selenium by saksham
2,425 views
0 votes
1 answer

How to get a emailable report using testNG?

After executing the test file that is ...READ MORE

Jan 14, 2019 in Selenium by survi
2,706 views
0 votes
1 answer

How to access a html page using selenium?

You will use driver.get() and instead of ...READ MORE

Jan 14, 2019 in Selenium by Pranjali
4,586 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,525 views
0 votes
1 answer

What are the skills required for getting job of a PaaS Solution Architect?

The skills required for getting the job ...READ MORE

Jan 11, 2019 in Selenium by rajesh
997 views
0 votes
1 answer

How to press CTRL+A in a webpage using selenium?

You can try using the following command:- driver.findElement(By.li ...READ MORE

Jan 11, 2019 in Selenium by Ravi
2,280 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,189 views
+1 vote
1 answer

How to get the HTML source of a webpage using Selenium in Java?

There is a method called getPageSource() in ...READ MORE

Jan 11, 2019 in Selenium by Sneha
28,483 views
0 votes
1 answer

Compound class names not permitted

Instead of using Class name you can ...READ MORE

Jan 11, 2019 in Selenium by Fujistu
6,354 views
+1 vote
3 answers

What is the command used to register gecko driver?

System.setProperty("webdriver.gecko.driver", "C:\\gecko ...READ MORE

Jan 10, 2019 in Selenium by Frankie
• 9,830 points
17,563 views
0 votes
1 answer

What is the use of Sibling in Xpath?

Using sibling keyword, we can fetch a ...READ MORE

Jan 10, 2019 in Selenium by Frankie
• 9,830 points
1,645 views
0 votes
1 answer

Python or Java for selenium?

According to me Python is better for using selenium. ...READ MORE

Jan 9, 2019 in Selenium by Nabarupa
545 views
0 votes
1 answer

Find element with specific text in selenium

You can use Xpath as the locator ...READ MORE

Jan 9, 2019 in Selenium by Nabarupa
8,029 views
0 votes
1 answer

Handle AJAX in selenium

AJAX allows the Web page to retrieve ...READ MORE

Jan 9, 2019 in Selenium by Nabo
679 views
0 votes
1 answer

Debug tests in Selenium

The tests could be debugged in such ...READ MORE

Jan 9, 2019 in Selenium by Prawin
1,233 views
0 votes
1 answer

Selenium Webdriver fail conditions

There are some causes of Selenium WebDriver ...READ MORE

Jan 9, 2019 in Selenium by Finito
1,969 views
0 votes
1 answer

What is a hybrid framework?

The combination of data driven and keyword ...READ MORE

Jan 9, 2019 in Selenium by trisha
445 views
0 votes
1 answer

What is a keyword driven framework?

The keyword driven framework is a methodology ...READ MORE

Jan 9, 2019 in Selenium by Disha
528 views
0 votes
1 answer

What is a data-driven framework?

Basically the working here is as follows:- Test ...READ MORE

Jan 8, 2019 in Selenium by Abir
472 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
57,859 views
0 votes
1 answer

How to run test case using TestNG

I am assuming that you want to ...READ MORE

Jan 8, 2019 in Selenium by Nabarupa
1,265 views
0 votes
1 answer

Find broken link in a webpage using selenium

You have to follow these steps to ...READ MORE

Jan 8, 2019 in Selenium by Sona
1,216 views
0 votes
1 answer

TestNG and Junit

No, testNG is better than JUnit. Here ...READ MORE

Jan 8, 2019 in Selenium by Nabarupa
551 views
0 votes
1 answer

Mouse gestures supported by selenium

Selenium supports different mouse actions, such as: click(WebElement ...READ MORE

Jan 8, 2019 in Selenium by Shuvodip
718 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,243 views
0 votes
3 answers

Refresh browser using selenium

Try navigate().to(driver.getCurrentUrl()). Works like charm. READ MORE

Jan 8, 2019 in Selenium by Mohan
983 views
0 votes
1 answer

Handle web-based popups

This happens with me also. I did ...READ MORE

Jan 8, 2019 in Selenium by Fuji
3,362 views
0 votes
1 answer

What is the difference between type() and typeandwait()?

If you want to type keyboard values(keys) ...READ MORE

Jan 8, 2019 in Selenium by Fuji
3,428 views
0 votes
1 answer

Testing in Selenium

Out of many testing supported by selenium ...READ MORE

Jan 8, 2019 in Selenium by Disha
427 views
0 votes
1 answer

Different API for selenium

Hey @User, there is this list that ...READ MORE

Jan 8, 2019 in Selenium by Fuji
438 views
0 votes
1 answer

What are the different components of Selenium?

Selenium is a testing tool and comprises ...READ MORE

Jan 8, 2019 in Selenium by Fuji
1,270 views
0 votes
1 answer

How to use firefox webdriver (geckodriver) in selenium?

Firefox v47+ with selenium 2.53, you need ...READ MORE

Jan 8, 2019 in Selenium by Nabarupa
7,081 views
0 votes
1 answer

How does selenium webdriver works?

When the automation script is implemented, the ...READ MORE

Jan 7, 2019 in Selenium by ritwik
484 views
0 votes
1 answer

How to find the absolute xpath of an element?

You can use the tool called chroPath ...READ MORE

Jan 7, 2019 in Selenium by Anjali
• 2,950 points
2,717 views
+1 vote
1 answer

How to search for a string without clicking on search button

There is a way by which you ...READ MORE

Jan 5, 2019 in Selenium by Disha
2,039 views
0 votes
1 answer

Unable to find a button on the webpage.

I checked the website you are working ...READ MORE

Jan 5, 2019 in Selenium by Sidha
462 views
0 votes
1 answer

Cannot use sendkeys to input string on an element in selenium

The problem may be of the locator ...READ MORE

Jan 5, 2019 in Selenium by Dushyant
1,642 views
0 votes
1 answer

What are the alternatives for selenium?

Selenium is not an independent tool, you ...READ MORE

Jan 5, 2019 in Selenium by Suchi
1,116 views
0 votes
1 answer

How to click on a drop down menu using selenium?

This can be tricky if you try ...READ MORE

Jan 4, 2019 in Selenium by Dhruva
8,220 views
0 votes
1 answer

Cannot click on a button using selenium

The error that I figured out was ...READ MORE

Jan 4, 2019 in Selenium by Dushyant
3,241 views
0 votes
1 answer

Elements are not recognised in selenium

Many a times the problem is that ...READ MORE

Jan 4, 2019 in Selenium by Dhruva
3,849 views
0 votes
1 answer

What is the importance of testing.xml file?

We use testng.xml file to configure the complete test ...READ MORE

Jan 4, 2019 in Selenium by Tushar
2,688 views
0 votes
1 answer

What are the advantage of using testNG?

The main advantage of testNG can be ...READ MORE

Jan 3, 2019 in Selenium by Dyna
14,380 views
0 votes
1 answer

How does dependency work in testNG?

There are times when you need to ...READ MORE

Jan 3, 2019 in Selenium by Shuvodip
446 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,168 views
0 votes
1 answer

How to disable a test case in testNG?

You can use the enable method to ...READ MORE

Jan 3, 2019 in Selenium by Nabarupa
1,879 views