How do I automatically download files from a pop up dialog using selenium-python
I am trying to automatically download files from a pop up dialog using selenium-python.The firefox popups look like this I want to simulate clicking "OK"I found this answer How do I trap a popup in...
View ArticleIn Python/Selenium, How to crawl whole youtube comment?
I want to analyze correlation with YouTube comment and Country by using Python/seleniumIf YouTube's movie contain too many comments, We scroll chrome to search next comment. Therefore I stop 3 seconds...
View ArticleSelenium Java - Change proxy dynamically while script is running
Hello stackoverflow community,I would like to ask you a question on how to change dynamically proxy during a running script on webdriver. Proxy proxy = new Proxy(); proxy.setSslProxy("server:port");...
View ArticleZoom out of website when using RSelenium without changing page size/resolution
I'd like to zoom out of RSelenium remote, but this is surprisingly difficult to find a solution. I am aware ofHow to zoom out page using RSelenium library in R?, but I woud like to not adjust the page...
View ArticleSelenium right click sometimes double taps
I am doing a bot for the game minesweeper, in which I need to be able to rightclick tiles to warn for bombs. I've created a function for clicking on tiles with the following code:from selenium import...
View ArticleHow to set paths while scraping data from website
I am scraping data from this URL. This is my code:from selenium import webdriver import os import time chrome_driver = os.path.abspath(os.path.dirname(__file__)) + '/chromedriver' browser =...
View ArticleQuestion about selenium get next page ele
there have a questiion about next page with webdriver.Ie() first of all I need login:import requests from selenium import webdriver driver = webdriver.Ie() driver.implicitly_wait(10)...
View ArticleHow to clear text field before sending keys selenium c#
I'm writing a simple selenium test which sends an incorrect string of letters then submits and returns and error. I want to then send a string of letter but this time with the correct string so it is...
View ArticleConvert c#/selenium to python/selenium
I'm converting a project over from c#/selenium to python/selenium.We have a drop down within the site which has an id which is incremental, i.e:Upl-employmentstatus-radio-01...
View ArticleAdd id or name property or other means of identification for Flutter Web...
Writing a Flutter Web application, I try to leverage a Web-UI-Testing framework based on Selenium. Sadly I fail to identify a HTML-Element representing a certain flutter widget by its id or name...
View ArticleInvalid session id in specflow Selenium on closing [AfterScenarios]
I am opening a browser session at [BeginScenario] and Quit the session at the [AfterScenario]. At the beginning of second scenario, i am getting 'OpenQA.Selenium.WebDriverException: 'invalid session...
View ArticleHow do I handle Proxy Authentication with Selenium using Java?
I've tried this code, but I doesn't do anything. Probably because it doesn't handle this kind of alert.driver.switchTo().alert().sendKeys("asd"); // Handling Password alert...
View ArticleHow to use If command in the selenium ide?
I was searching the web for a long time. I'm trying to put if and else statements into this selenium IDE. The program itself doesn't provide any parameters, hints, or help. I saw a lot of results...
View ArticleHow to access a button which changes states
I have a button which has two states - enabled and disabledEnabled State: <button type="button" class="btt-download-csv site-toolbar-menu-button icon-download no-icon-margins ng-isolate-scope"...
View ArticleSelenium JS Executor Failure: "Failed to execute elementsFromPoint on Document"
I'm running code that fetches a span by the value of its text and then goes to rightclick it using this function:public void rightClickElement(WebElement element) { Actions action = new...
View ArticlePython/Selenium/Firefox , my code think the page continue to charge and don't...
for loop in range(29021, 29041): driver.get("https://graphs.thice.fr/graphs/get_pdf_charts/" + str(loop)) time.sleep(2) pyautogui.press('enter') The URL opens a download popup and my program doesn't...
View ArticleWebDriver opens Chrome with data:, stuck on address bar (Python Selenium)
Trying to open YouTube (or any other website) using Selenium in Python. When I run the program, a blank browser window pops up, with phrase data:, in the address bar, and it stays right there until...
View Articlechrome is not able to run in Selenium Webdriver . i am using selenium 3.0.1...
public class sikuli { public static void main(String[] args) throws Exception { //Screen screen=new Screen(); //screen.click("//home//exeter//Pictures//googlechrome.png");...
View ArticleException in thread "main" org.openqa.selenium.ElementClickInterceptedException
Exception in thread "main" org.openqa.selenium.ElementClickInterceptedException: element click intercepted: Element ... is not clickable at point (1075, 323). Other element would receive the click:...
View ArticleSelenium driver can't find any element after logging into a website [Python]
First of all if a similar topic occurred earlier I'm sorry but I couldn't find any problem like mine.I would like to create a simple script which enters an e-mail website, log into my account and finds...
View Article