With browser automation a web browser can be instructed to repeat the same, possibly long task automatically or at will. In daily use browser automation can be used to fill forms, extract data from web pages, or provide authentication to a service. Browser automation is often used for automating testing of web applications. The same tests can be repeated after each change and in different browsers to verify correct behavior.
Questions tagged [browser-automation]
1104 questions
-1
votes
1 answer
Automate Web Browser control in Multiple Threads
I want to know if its possible to automate the System.Windows.Forms.WebBrowser and make it running in multiple threads.
I mean I want to login to say mysite.com , using 5 different accounts, Is it possible to do that simultaneously with 5 web…

Sumit Ghosh
- 3,264
- 4
- 40
- 59
-1
votes
2 answers
Automated Web Testing Tools in Java
I want to test a Ajax based web application. I want to write the test scripts in Java and simulate the web browser.
Simulation of a web browser is very important since Iam using very advanced Ajax library like jQuery in the web Application.
Any…

Sumit Ghosh
- 3,264
- 4
- 40
- 59
-1
votes
1 answer
User emulation - Browser automation
I have a website where users should every day perform the following tasks:
Log in with user/password
Select from a filter the date of the day
Click on a link that will let them download a csv file that they will import in a database.
Of course I…

maxdangelo
- 3,063
- 5
- 21
- 25
-2
votes
1 answer
How to make python selenium less detectable?
Okay, so I am making a bot for this website to automate account creation. I am using rotating ipv4 proxies and some other anti detection stuff but still being detected every time. Any ideas?
Here's how I'm initializing the driver and what options im…

nolanmastro
- 1
- 2
-2
votes
2 answers
When writing end to end selenium tests, should I navigate to a page or just open the URL?
Say I need to submit a form on the 'Classes' page. I am testing the 'enroll into class' feature. Do I navigate to the page by clicking on the menu bar, or do I just directly open the URL of the page?

Lemonand09
- 3
- 4
-2
votes
1 answer
Javascript error: missing ) after argument list
I fail to find the cause for this error. It seems to be on the 4th line. I have tried various different ways. Could anyone point out where I am going wrong with this pls?
public WebElement jsQuery(String componentQuery) {
String cmd =…

Oasis001
- 79
- 2
- 17
-2
votes
1 answer
Javascript - get element from page click it. getElementsByClassName not working
So I'm trying to get a button element from the page by the class name. But this function, as well as queryselector return undefined value. What might be the reason? Can it be because this element is a child of another element?
var checkout_btn =…
-2
votes
1 answer
How to automate OTP using selenium web driver with python?
After giving a mobile number on the website to login it asks for otp..Have to read OTP from DB.how can I automate the process to read the OTP from DB to login.

K Chaithanya
- 1
- 2
-2
votes
4 answers
Which Maven dependencies are needed for Cucumber, am using Testng as my test-framework
Here are the tools/jars in my automation framework
Selenium
Testng
Maven
Jenkins

Madhavan
- 45
- 1
- 1
- 7
-2
votes
2 answers
How to find web element if it is changing in selenium
How do I create a Xpath of any element in web page when it is changes each page load or refresh using selenium

Yogeshk
- 1
- 3
-2
votes
1 answer
How to sendKeys in textBox? for automation
I'm doing a test on c# with selenium for this site http://onliner.by.
At first I have to be authorized on this site.
I found(by xpath) button with name"Вход" in the right upper corner and click on it.
Then there's refreshed and page changed, but the…

Aleksandr Efimov
- 1
- 2
-2
votes
3 answers
How can I select available seats while booking a bus online (www.redbus.in) using selenium webdriver?
Visit below link for the steps:-
https://www.dropbox.com/s/x1dzl74txcev0r0/Steps.png?dl=0
The seats are shown in a canvas

Ashish Ahuja
- 85
- 1
- 8
-2
votes
1 answer
I am not able to open URL using driver.get(“URL”) in selenium web driver
I am not able to open a URL using driver.get(“URL”) in selenium web driver.
My Firefox version is 53.0.3 and selenium 3.4.0.
My code is:
System.setProperty("webdriver.gecko.driver","D:\\geckodriver-v0.16.1-win64\\geckodriver.exe");
WebDriver…

Automation Fresher
- 11
- 1
- 8
-2
votes
1 answer
Selenium Webdriver - How can I randomise a test to input new details every time?
So I have a Test where I am filling out a form. What I want is to run this test multiple times and each time to use different input values such as a different name. I think I can use some kind of word list to do this? But I'm not sure exactly how to…

OhAye
- 93
- 1
- 4
- 12
-2
votes
1 answer
how to make a automation testing framework
I have to make a framework for my organization for the selenium automation testing.currently we works on test-ng integrated with eclipse with the maven.Now for this we have to make a huge setup in every project. Also now we are planning to involve…

user3706469
- 105
- 1
- 10