Failed to load extension from: . Manifest file is missing or unreadable error...
I use Selenium for UI tests. I want to run an instance of Chromium but when Chromium is opened I got a pop up with "Failed to load extension from: . Manifest file is missing or unreadable".Clicking ok...
View ArticlePycharm Selinum Click issue
I am new in python. I wrote this code but in the last the code don't click to Log In from selenium import webdriver from selenium.webdriver.common.keys import Keys import time driver =...
View ArticleHow to find and get the color of text in a website for automation script to...
what is the selenium command to get the color of text in python?. I used: 1. get_css_value('color') 2. value_of_css_property("color")nothing seems to work
View Articlepython selenium open driver when a chrome session is already running
I am trying to open a web page using the selenium python library with my default user, it is critical that the script uses the default user but if my chrome browser is already open the script crashes...
View ArticleHow to use Chrome Profile in Selenium Webdriver Python 3
So whenever I try to use my Chrome settings (the settings I use in the default browser) by addingoptions = webdriver.ChromeOptions() options.add_argument("user-data-dir=C:\Users\... (my webdriver...
View ArticleSelenium Python - How do I make my program to click an particular element...
I'm trying to make a bot that automatically opens my server for me. The problem is there's a human verification check in that website. When the number of people in the queue is less than 300 a button...
View ArticleHow do I switch to the active tab in Selenium?
We developed a Chrome extension, and I want to test our extension with Selenium. I created a test, but the problem is that our extension opens a new tab when it's installed, and I think I get an...
View ArticleCan you track mouse position on a webpage in Selenium webbrouser? C#
I am trying to keep track of mouse coordinates in the Selenium browser.Selenium has no mouse tracking functions. It only has MoveByOffset(int x, int y) and MoveToElement(IWebElement) function. I need...
View ArticleHow to get session id on Selenium webdriver using Python?
Im using SauceLabs and I need the sessionId to get the Job Id there and use it to set pass/fail status during execution of the test. How can I get the session Id using python?
View ArticleDetect user key/mouse in Python Selenium
I'm using Selenium Browser for day to day browsing, and I'd like to fire some code when I press some keys on any page. At first I thought I can just load javascript on every page that registers...
View ArticleSelecting different web elements with the same name
I am trying to use selenium with python to go through different tabs (buttons?) on a carousel so that I can collect data from each of them, but the problem is the webelement that I need to use is the...
View ArticleIs there a way to disable the cookies that come with scraping an images link?
I am scraping some phone images off of Bell's Website and the cookies seem to come with. Im not downloading the image, im simply collecting the links to the image. Im looking to see if I can disable...
View ArticleScraping Data from a website which uses Power BI - retrieving data from Power...
I want to scrap data from this page (and pages similar to it): https://cereals.ahdb.org.uk/market-data-centre/historical-data/feed-ingredients.aspxThis page uses Power BI. Unfortunately, finding a way...
View ArticleSelenium node docker images NODE_MAX_SESSION and NODE_MAX_INSTANCES env...
I'm using docker compose file from selenium wiki.For chrome and firefox nodes there are NODE_MAX_SESSION and NODE_MAX_INSTANCES env variables.Is my understanding correct - there is no difference...
View ArticleWhile loop doesn't add up my variable python3
I'm doing a data scraper in python using selenium, I want to navigate through pages in a website using a while loop for execute the scraper but i can't change my navigate variable, here is my...
View ArticleCURL Selenium Commands Not Returning Session ID
I'm using Win10 & my CURL is installed in my C drive. My chromedriver.exe is placed in "Drivers" folder in my C Drive. I launched CMD & typed: cd C:\Drivers which took me to my Drivers folder....
View ArticleUsing Selenium to automate duo authentication, but the chrome webdriver gets...
I'm trying to automate the process of logging into my university account using Selenium and Python. My university uses Duo Multi-Factor logon. When I get to the Duo authentication page, the Duo iframe...
View ArticleSelenium Click issue
The last line in the code below doesn't do the click.from selenium import webdriver from selenium.webdriver.common.keys import Keys import time driver =...
View ArticleHow can I insert path (environmental variable) for geckodriver in google colab?
I want to run selenium in Google Colab through gecko driver, but it told me: executable needs to be in PATHI uploaded firefox and gecko driver in Google Colab and copied gecko driver's path. The code...
View ArticlePage source not showing advertisments for selenium / Python
This should be a very straight forward element find which is just not occurring, I've add in a very long implicit wait to allow the page to load completelyfrom selenium import webdriver driver =...
View Article