selenium-webdriver Questions
5
Solved
I've been struggling with this problem for sometime, but now I'm coming back around to it. I'm attempting to use selenium to scrape data from a URL behind a company proxy using a pac file.
I'm usin...
Aston asked 30/12, 2021 at 17:31
2
I know that webdriver.Chrome() below can get the chrome driver but I do not know which version of chrome driver it gets because the doc doesn't have any such explanation. *I use Selenium 4.11.2:
fr...
Chandigarh asked 16/8, 2023 at 16:8
10
Solved
I've tried login with Gmail or any Google services but it shows the following "This browser or app may not be secure" message:
I also tried to do options like enable less secure app in m...
Spathose asked 15/2, 2021 at 13:38
1
I am using Selenium within R.
I have the following script which searches Google Maps for all pizza restaurants around a given geographical coordinate - and then keeps scrolling until all restaurant...
Peregrinate asked 12/8, 2023 at 21:14
4
Solved
I'm trying to check compatibility of chrome and chromedriver to prompt the user to download the correct chromedriver version if needed. I'm looking to check the version of chrome driver in a way si...
Everett asked 21/11, 2019 at 16:18
27
I am currently using selenium webdriver to parse through facebook user friends page and extract all ids from the AJAX script. But I need to scroll down to get all the friends. How can I scroll down...
Upswell asked 8/1, 2014 at 3:44
5
Solved
I need to resize the browser as 300x400 during executing the Selenium automated tests. How can I resize the browser window in Selenium WebDriver (aka, Selenium 2) with Java?
[Note: It needs to res...
Everlasting asked 21/5, 2013 at 7:28
3
Solved
I am trying to access a site using selenium Python.
But the site is checking and checking continuously by cloudflare.
No other page is coming.
Check the screenshot here.
I have tried undetected ch...
Goldthread asked 17/3, 2022 at 20:6
16
Solved
How to change page zoom level in Selenium WebDriver?
I tried:
driver.Keyboard().pressKey(Keys.Control);
driver.Keyboard().pressKey(Keys.Add);
But it doesn't work.
Reitareiter asked 22/2, 2013 at 12:54
10
Solved
I recently updated my Google Chrome browser to version 115.0.5790.99 and I'm using Python webdrivermanager library (version 3.8.6) for Chrome driver management.
However, since this update, when I c...
Buckboard asked 19/7, 2023 at 20:22
10
I am using Selenium with Java to run scripts on android (thru Appium server).
I see that it is not possible to locate a toast by using selenium's
driver.findElement(By.LinkText("User not logged i...
Clementius asked 26/5, 2015 at 12:43
7
Solved
I really can’t to set socks5 proxy (http too...) for my chrome webdriver in selenium for python.
I tried many different ways... But I think I do something bad.
Example 1:
self.options.add_argument(...
Cordero asked 31/10, 2018 at 11:26
11
Solved
from selenium import webdriver;
browser= webdriver.Firefox();
browser.get('http://www.seleniumhq.org');
When I try to run this code, it gives me an error message:
Expected browser binary location,...
Chrisoula asked 16/12, 2020 at 6:35
3
Solved
I have written a Python script using Selenium and ChromeDriver to scrape data. The script navigates through several pages and clicks on various buttons to retrieve the data. However, I am encounter...
Szombathely asked 15/5, 2023 at 3:19
5
Solved
Is it possible to click multiply buttons with the same text with Selenium?
Kotick asked 17/2, 2016 at 23:56
1
I have used ChromeDriverManager for over 1 year and no issues with it when Chrome browser has been updated but today I have the following error message:
There is no such driver by URL https://chrom...
Helminth asked 26/7, 2023 at 11:43
7
Solved
When using implicit waits, as advised here, I still sometimes want to assert the immediate invisibility or non-existence of elements.
In other words, I know some elements should be hidden, and wan...
Merrilee asked 14/6, 2012 at 13:57
4
Solved
I am using Selenium to Log In to an account. After Logging In I would like to save the session and access it again the next time I run the python script so I don't have to Log In again. Basically I...
Tuckie asked 13/8, 2020 at 16:31
3
Solved
I am currently trying to grab text from a PDF that is already uploaded and accessed through a link by using PDFBox and Selenium.
I used this as a source: http://www.seleniumeasy.com/selenium-tutori...
Outlet asked 20/6, 2018 at 17:28
3
Solved
I'm not able to click on Allow button of access camera authentication pop up.
Here is the look of pop up.
Herr asked 28/12, 2017 at 12:39
6
I am trying to check if an element on a page exists by CSS using Selenium 2. Anyone have any examples using PHP Selenium Webdriver Facebook wrapper?
I have tried the below code:
if($driver->fi...
Rexer asked 21/10, 2013 at 14:8
2
I want to use Selenium (installed: ver 3.141.0.dist-info) on Python (3.8) which is installed on my Windows 7 64,
I Use Brave Browser Version 1.17.73 Chromium: 87.0.4280.67 (Official Build) (64-bit)...
Colpin asked 26/11, 2020 at 21:50
6
Solved
I add the below dependency and code for Opening Chrome,but browser is not opening.
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driv...
Rosanarosane asked 8/3, 2016 at 12:13
2
Solved
I am working with the R programming language and trying to learn about how to use Selenium to interact with webpages.
For example, using Google Maps - I am trying to find the name, address and long...
Garboard asked 17/7, 2023 at 3:39
3
Solved
I am trying to execute multiple keywords if a condition evaluates as true.
I tried to do something like this
*** Test Cases ***
| Example
*** Keywords ***
| Example
| | ${title}= Get Title
| ...
Furnishing asked 4/5, 2015 at 13:48
© 2022 - 2024 — McMap. All rights reserved.