Most answered questions in Selenium

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
727 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,373 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,446 views
0 votes
1 answer

Testing in Selenium

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

Jan 8, 2019 in Selenium by Disha
442 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
446 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,280 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,110 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
502 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,731 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,044 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
468 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,658 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,131 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,230 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,261 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,863 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,705 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,433 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
453 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,888 views
0 votes
1 answer

What is the use of @listener annotation in TestNG?

 @listeners are used to configure reports and ...READ MORE

Jan 2, 2019 in Selenium by Shuvodip
2,467 views
0 votes
1 answer

What are the different assertions supported by testNG?

The different assertions you can use in ...READ MORE

Jan 2, 2019 in Selenium by Nabarupa
630 views
0 votes
1 answer

How to check whether a text is present in the webpage or not?

Hey @Sradha, you can use this to ...READ MORE

Jan 2, 2019 in Selenium by Rudra
1,867 views
0 votes
1 answer

How to check visibility of an element using Selenium webDriver commands?

Selenium gives you the facility to check ...READ MORE

Jan 2, 2019 in Selenium by Nabarupa
4,076 views
0 votes
1 answer

What is the webdriver that can be used with firefox?

You can use Firefox Gekodriver to use ...READ MORE

Jan 2, 2019 in Selenium by Nabarupa
646 views
0 votes
1 answer

How to delete cookies using selenium command?

Yes, it is possible to delete the ...READ MORE

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

How can I travel forward and back in a browser using selenium?

You can use the Navigate interface to ...READ MORE

Dec 31, 2018 in Selenium by Nabarupa
11,950 views
0 votes
1 answer

Getting error: unhandled inspector error: {"code":-32000,"message":"Cannot navigate to invalid URL"}

Hey, @sradha, The error you are getting is ...READ MORE

Dec 31, 2018 in Selenium by Shuvodip
10,030 views
0 votes
1 answer

What is RasterFormatException in Java?

RasterFormatException is thrown by getSubImage() when the area specified by [ x,y ...READ MORE

Dec 31, 2018 in Selenium by rishav raj
2,201 views
0 votes
1 answer

What is soft assert and hard assert?

Soft Assert: Soft Assert collects errors during ...READ MORE

Dec 31, 2018 in Selenium by Stranger
24,888 views
0 votes
1 answer

What is difference between Assert and Verify in Selenium?

Hello, talking about the definition.  Assert: If the assert condition ...READ MORE

Dec 31, 2018 in Selenium by Prasad
37,497 views
0 votes
1 answer

How can I take a screenshot using selenium?

Hello @Sradha, You can use the File ...READ MORE

Dec 31, 2018 in Selenium by Nabarupa
514 views
+1 vote
1 answer

Python Selenium - Trying to find element by text on page

Hello @User, Here is an example for ...READ MORE

Dec 31, 2018 in Selenium by Priyaj
• 58,090 points
14,489 views
0 votes
1 answer

Error while executing selenium code

Hey @Sradha, First thing that I would ...READ MORE

Dec 28, 2018 in Selenium by Nabarupa
1,842 views
0 votes
1 answer

How to search for multiple keywords in a random manner using Selenium in Java?

Hey @Sradha,  As you have created an array ...READ MORE

Dec 28, 2018 in Selenium by Nabarupa
2,194 views
0 votes
1 answer

How to open chrome driver in incognito mode?

Hey @Sradha, You can use the below code:- System.setProperty("webdriver.chrome.driver","C:\\Users\\Nabarupa_Das\\Downloads\\chromedriver.exe"); ChromeOptions ...READ MORE

Dec 28, 2018 in Selenium by Nabarupa
4,997 views
0 votes
1 answer

Different types of parameterization.

There are two ways in which you ...READ MORE

Dec 28, 2018 in Selenium by Rachna
586 views
0 votes
1 answer

What is parameterization?

When you write a software you want ...READ MORE

Dec 28, 2018 in Selenium by Disha
463 views
0 votes
1 answer

Is there a way to run only few test cases at a time in testNG class?

Hello @sradha, yes there are many ways ...READ MORE

Dec 27, 2018 in Selenium by Rashmi
5,318 views
0 votes
1 answer

Program terminating with error.

This error you got is because your ...READ MORE

Dec 27, 2018 in Selenium by Nabarupa
1,211 views
0 votes
1 answer

Unable to run a selenium code for google search.

The error that you are getting is ...READ MORE

Dec 27, 2018 in Selenium by Anshu
808 views
0 votes
1 answer

Is there a method by which we can control the running of a test case?

Hey @sradha, yes there is a way ...READ MORE

Dec 27, 2018 in Selenium by Nabarupa
650 views
0 votes
1 answer

Can a testNG suite run with different group names which doesn't exist?

Hey @Sradha, this works fine. Yes the ...READ MORE

Dec 27, 2018 in Selenium by Richa
2,381 views
0 votes
1 answer

How to execute groups of similar name for multiple classes?

Hello @Sradha,  You can create a TestNG suite ...READ MORE

Dec 27, 2018 in Selenium by Trisha
693 views
0 votes
1 answer

What is sequencing in TestNG?

Sequencing helps you to run your test ...READ MORE

Dec 27, 2018 in Selenium by Trisha
665 views
0 votes
1 answer

What is the use of grouping in testNG?

Grouping is the method used to separate ...READ MORE

Dec 27, 2018 in Selenium by Trisha
870 views
0 votes
1 answer

How can I get cssSelector of an element?

There are two ways as much as ...READ MORE

Dec 27, 2018 in Selenium by Trisha
494 views
0 votes
1 answer

exceptionNoSuchElementException when i try to find an element using Class locator

The error you are getting is because ...READ MORE

Dec 26, 2018 in Selenium by Tanvi
573 views
0 votes
1 answer

System.setProperty (String,String) is showing System is not applicable for the arguments

You are correct that it requires (String,String) ...READ MORE

Dec 26, 2018 in Selenium by Rashmi
1,859 views
0 votes
1 answer

How to execute multiple classes at once using TestNG?

Hey @Sradha, Yes it is possible in ...READ MORE

Dec 26, 2018 in Selenium by Rashmi
9,098 views