How to close the Pop Up while accessing the website using Selenium and Python...
I am trying to scrape 'https://www.bankbazaar.com/health-insurance/network-hospitals-list.html' but am not able to get rid of the pop ups Please let me know How can i get rid of the pops from this...
View ArticleHow to click "Show More" link in YouTube?
I have been using selenium in python to take screenshots of YouTube comments, but I can't get all the text in the image. I have tried the following:buttons =...
View ArticleIs there another way to find the Twitter Tweet element?
The classes for identifying peoples tweets on Twitter are now a bunch of random characters with the new Twitter update, when you're not logged into Twitter, the class name is "tweet" and with that I'm...
View ArticleAccessing another docker container within different docker container using...
my docker-compose.yml fileversion: "3" services: mydb: image: localhost:5000/mydb restart: always environment: POSTGRES_PASSWORD: mypassword TZ: "Australia/Perth" volumes: -...
View ArticleRetrieving aria-label value using Selenium's find function [SOLVED]
I have the xpath of an element on a website but I'm trying to get the aria-label value of that element. # NO SUCCESS: print(WebDriverWait(browser, 20).until(EC.visibility_of_element_located((By.XPATH,...
View ArticleUsing Selenium and BS4 is it possible to scrape the text outside the "="...
I am looking at scraping the below information using both selenium and bs4, and was wondering if I find the below div tag, is it possible to scrape the data inside the quotation marks? for exmaple:...
View ArticleChrome and Firefox are cancelling my local requests
I'm trying to test some local flash development by injecting my swf file into the website being served up by my test server.I've already set --disable-web-security on Chrome to allow me to load local...
View ArticleHow to navigate to new browser window using partial title text using either...
During my tests, we need to click on links that open webpages in new tab. In some cases, we see the test fail due to inclusion of multiple space or tab characters in the title text. One of the examples...
View ArticleHow to avoid getting a low score on recaptcha v3 tests with selenium
So I have recently been working on a python project and am currently using selenium chromedriver. However, I often find myself being banned from websites due to a low recaptcha v3 score. is there any...
View ArticleSelenium not getting different URLs
I'm using Selenium in Python to scrape a site that loads Javascript Here's my code: [https://gist.github.com/elliotmartin/f9cb5021655f913f250b08f39a14dc9d][1]For some reason as I loop over different...
View ArticleHow to locate non html content in selenim
Can I locate a non html element on a web page using selenium ??In my web page there is a dropdown list but the values of dropdown list are not included in the html tags. The values are comes to that...
View ArticleIs there any way to do backspace twice to clear a text field using selenium...
I have a text field that contains a 2 digit value by default. I want to clear it before I type a new value. I was using TextSlider.Clear(); but after the latest ChromeDriver update, it's no longer...
View ArticleWebdriver do not get attribute of ® Selenium driver
Hi I would like to get to ® symbol to be recognized in python in the file I've shown you bellow.get_attribute("href") but I've tried many ways to decode and encode it but it doesn't seem to work. I...
View ArticleGet URLs of all open tabs using Python
I am creating a webdriver instance using selenium for some automation work. I am opening multiple tabs at a time and would like to know if there is a way to get the URLs of all the tabs open....
View ArticleHow to run java selenium code without any IDE [closed]
I want to run java selenium code with command prompt and notepad. I have no idea about maven. How to add jar files externally without any IDE and how to run them? A brief explanation would be great.
View ArticleSelenium Python accessing to a calendar value
I have the below HTML code for a calendar:<table border="1" cellspacing="0" cellpadding="0" width="90%" align="center" bgcolor="#FFFFFF"><tbody><tr><td class="bgtd"> <table...
View ArticleSelenium java webdriver 3: moveToElement not working
Selenium java webdriver 3: moveToElement not working.WebElement element = ... Actions actions = new Actions(driver); actions.moveToElement(element).build().perform(); Tried, adding click()WebElement...
View ArticleHow to find the highlighted text using selenium web driver in Java?
Hello I have tried the following link. It is working only if we select the text manually.But my case is like, we have found the text using the text search.Is it possible to find the selected text using...
View ArticleWebDriverException: unknown error: Chrome failed to start: exited abnormally...
Goal:Build Docker container to upload selenium web scraper to AWS Lambda using this page as a guide https://robertorocha.info/setting-up-a-selenium-web-scraper-on-aws-lambda-with-python/. Currently...
View ArticleCreate a specific work item (Bug) for test case in Azure DevOps...
I'm using Azure DevOps to run test cases using Selenium.I want to know how to create a work item when a test case fail in seleniumThe pipeline is completing without error( without notifying that the...
View Article