How do i set browser width/height on initiation and how can i add tabs at the...
I have been struggling to adjust the browser width and height to be set during initialization. Currently i am using ... driver = webdriver.Chrome(chrome_path) options.add_argument("--width=300")...
View ArticleIs there a webpage that highlights mouse clicks to test mouse...
Is there a webpage that highlights mouse clicks to test mouse accuracy/automation?Ideally I'd like a blank screen that then highlights around mouse clicks momentarily before returning to blank after a...
View ArticleHow to keep test scenarios short and independent?
I am building a test suite using BDD, and I know it's bad if your test cases depend on each other, but in some situations I can't see any other way to do it, for example:Say I have 3 scenarios: one is...
View ArticleScraping data from a table using BeautifulSoup and Selenium
I am trying to build an application that scrapes course information from a universities course catalogue and then constructs a few possible schedules a student could choose. The course catalogue url...
View ArticleAngular/ Protractor E2E Test fails when run in Azure DevOps Pipeline. Passes...
I am trying to run e2e tests on my angular application. My tests pass locally when I run ng e2e but not in my pipeline. I'm going to share my protractor.conf, the pipeline tasks and the output I get...
View ArticleException in thread "main" java.lang.NoClassDefFoundError:...
I have added the most updated Selenium dependency in my pom.xml<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId>...
View ArticleUsing Silenium with webdriver for Chrome and getting "Permission denied" or...
I'm trying to use Python with selenium to automate downloading files from a website, but when I try to call chromeDriver I get an error. I've tried two different ways but without success. Any ideas on...
View ArticleNot able to run conf.js with Protractor Azure Pipeline
This is my YAML and I'm able to install npm, update and start the webdriver-manager, but I don't know how to run my conf.js fileThis is my YAML:And this is the run:I'm new in Azure DevOps so please...
View ArticleParallel feature execution without resetting driver between scenarios?
I have specflow parallel feature execution working for my test suite, but at the moment, it will open up a brand new browser for every single scenario in that feature. Is there any way to make it so it...
View ArticleUsing Selenium and Python pull the list of specific search results based on...
I am attempting to visit specific sites provided in the search results page. I can pull back an entire list of sites on the page but 1) it includes sites which are not specific to the one I want to...
View ArticleProbable impact of implicit wait removal
In our Selenium automated tests, we've implicit and explicit waits. As per Jim Evan's thought https://stackoverflow.com/a/15174978/1471417, they should not be mixed. Hence planning to remove implicit...
View ArticleHow Can I Change the Googlestore Filter with selenium
How can I change the Google play store Filter with selenium?I want filter change related to 'The Latest' OrderCode:driver = webdriver.Chrome(executable_path='tmp/chromedriver') url_common =...
View ArticleChanging python selenium webdriver's zoom breaks the click function?
Every time I try to load the page zoomed out, the elements I want the program to click no longer are clicked and it gives an ElementClickInterceptedException saying it was trying to click on a...
View Articlecan't use a conda environments module's
so I have a code that is working fine. only thing is that my code doesn't work in the base conda environment. It can only work in an environment where selenium is installed. But whenever I try to...
View Articlehow to handle outlook/windows live mail in selenium java, I want ot read otp...
how to handle outlook/windows live mail in selenium javahow to connect with OUTLOOK through Selenium java, CAn i use AUTOIT for it - how to connect with autoit
View Articlechoosing the youtube video quality by using selenium in Python
I'm having an issue to select the video quality resolution from the youtube video https://www.youtube.com/watch?v=JhdoY-ckzx4.import unittest import time from selenium import webdriver from...
View ArticleHow do I suppress console/cmd error messages in python
How do I suppress error messages in python for chromedriver and pyinstaller exe? I noticed that when I use chromedriver in pyinstaller and run it I get a list of error messages. I have been trying to...
View ArticlePyhton method not running but selnium code does
I'm into automation using selenium in python which consist of normal python methods and selenium codes. when I run the entire program, only selenium is executing but not the methods. I tried so hard...
View ArticleRun selenium test case from a console application c#
console app with a batch file which will hit my Automation testing application and runs selected test cases. I have test case with code coverage and it runs from my visual studio . and now on top of it...
View Article(Python)My list is getting cleared though I'm not clearing it[SOLVED]
I'm trying to append a temporary list(temp) to the main list(dfl) where the temporary list changes the elements inside it each iteration of a for loop. The code snippet is below-for i in...
View Article