Questions tagged [webdriver]
WebDriver is an API for controlling web browsers, e.g. for automated tests. There are different WebDriver "language bindings" (i.e. client libraries) and WebDriver "implementations" (i.e. browser extensions that make a browser controllable via the API), so if your question is specific to one of them, make sure to also include the appropriate tag.
35 questions
2
votes
0
answers
611
views
My first vba-selenium code
I have been obtaining financial information on an annuity I have which is invested in multiple funds which are proprietary to the insurance company.
The asset value is not available other than on ...
1
vote
2
answers
133
views
WaitFor method for website automation testing with Selenium WebDriver
I am trying to use Selenium for website automation testing tasks and I am new to Selenium testing framework. The the situation I faced is to wait the website components loading and then do the related ...
2
votes
1
answer
1k
views
Extract flight arrival data from web
I'm trying to scrape arrival data from Flight Radar 24
My script takes extremely long time to scrape the data. Is there any way I can speed up the scraping process?
Here's my script:
...
2
votes
0
answers
374
views
A thread-safe WebDriver pool to submit browsing jobs to
For a project, I need to make use of Selenium WebDrivers, and since they're so expensive to start, I decided to write a pool to manage them.
...
4
votes
0
answers
96
views
Python Selenium First Project - loop through pages and check/uncheck tick boxes
New to Python/Selenium and learning on the fly with my first basic selenium script.
Request user input - activate or deactivate.
Open's website, loops through shop URL as well as activate/deactivate ...
5
votes
1
answer
318
views
Automating TypeRacer using selenium
This is a personal project which I created solely to torture my friends ;)
I'm pretty sure you've heard about typeracer.
And if you have friends like mine who are faster than you, you'd surely be ...
3
votes
1
answer
187
views
Project : My Anime Finder
This is a project that finds a specific anime (show) and checks to see if there is a new episode of it .
this is also the first time that i used def like this and ...
7
votes
2
answers
882
views
Finding solutions on GitHub and Stack Overflow
The first part of the code opens Chrome and navigates to GitHub. If I don't find my solution, I open a new tab with ctrlt. Then my code goes to Stack Overflow and searches there for solutions.
...
1
vote
1
answer
108
views
Reusable webdriver framework using SOLID design principles
I am trying to design some classes which I intent to use as a framework. I would like them to be compliant to SOLID design principles.
I had a basic structure and then I implemented Strategy design ...
2
votes
1
answer
226
views
Program to automate skipping users on a chat website until the username meets certain conditions (v.2.0)
This is a python program that automates skipping through users on a chat website called talkwithstrangers using the Selenium Webdriver and BeautifulSoup modules of Python.
The first part uses ...
1
vote
1
answer
195
views
Program to automate clicking on the new button on a chat website until the username matches certain conditions
This is a python program that automates skipping through users on a chat website called
talkwithstrangers using the Selenium Webdriver and ...
4
votes
0
answers
114
views
UI testing for a web application, with variant scenarios
I'm pretty new to software testing and am currently working on a cloud-based web application.
Briefly, the application uses:
Ext JS as a framework
Bryntum's Siesta framework for testing
Currently, I'...
5
votes
1
answer
212
views
Find DivTag element in list and click when innerHTML matches account name
I need to click on a "account" button from a table of buttons. If this "account" button is not present, then I will need to click a different "UseAnotherAccount"
button.
How I do it at the moment is:...
3
votes
1
answer
118
views
Beating the queue
Inspired by this question on CodeReview, and because I'm never able to beat the queue.
I'm just too slow I guess.. :(
I made a little python utility that reads the queue's information every 30 ...
1
vote
2
answers
198
views
Page Object Model class structure in Selenium
I am automating a webform, and this is what I've coded so far. I am curious if you find the code good and readable. But most important to me is to get some feedback for learning purposes.
The remove ...