All Questions
Tagged with browser-automation python-3.x
44 questions
0
votes
0
answers
169
views
Robocorp Bot not starting chrome even when chrome.exe is in the path environment variable
I have a robocorp bot in a windows 10 machine. It worked fine but suddenly it stopped working, I think it may be due to a chrome update. Now it won't open google chrome. I am using RPA selenium to ...
1
vote
0
answers
1k
views
How to bypass cloudflare checkbox selenium in VFS Global website
There is Two type cloudflare protection, I am troubling with checkbox marking. every time I tik that chakboc it says failuer. I tried with seleniumbase and selenium also.When ever I tik that box ...
0
votes
1
answer
61
views
NoSuchElementException with Selenium
I have been working on developing a bot called Bot1 to scrape data from a specific website. For this purpose, I am utilizing the Selenium framework. However, I encountered an issue where the bot fails ...
0
votes
1
answer
69
views
Python module not downloading
External modules are not getting downloaded in Python. It is showing the below error message for any module that I try to download.
1
vote
1
answer
213
views
How can bypass this issue here in redbubble
I just coded a redbubble auto upload program but while logging in everything works perfect but after some time i have tried got a problem in captcha i am anot able to slove it also i have tried ...
0
votes
1
answer
64
views
How do I work out if a modal view is still visible or has finally closed after an indeterminant time using Selenium and Python?
I have a modal view which asks the user for certain details such as title, description etc for a list creation task on a website. Once you have entered all the details you can click save and the modal ...
0
votes
0
answers
102
views
How can I click Quarterly button on Yahoo financials and get Quarterly data instead of Annual data?
I want to navigate to https://finance.yahoo.com/quote/MSFT/financials?p=MSFT and click the quarterly button
This is my code so far:
def clickQuarterlyButton(url):
try:
options = Options()
...
0
votes
1
answer
48
views
The send_keys() method is neither working nor throwing any exception on the webpage's prompt type alerts
When trying to use the send_keys() method to enter the text in a webpage's prompt type alerts, it is doing nothing, nor any exceptoin is being thrown so that I can correct the issue. I have tried this ...
0
votes
2
answers
1k
views
How do I click this button using Selenium in Python? (Using Edge browser)
I have been trying to automate the login into a booking system to help me to book for my classes.
enter image description here
I have tried to use the following methods:
clickLogin = driver....
1
vote
0
answers
99
views
Cant' download file embedded even after switching to iframe using selenium and python
I have automated selection of data using selenium but site displays report inside iframe, I want to download xlsx files which is part of iframe.
Cant download files iteratively and there is no url ...
1
vote
1
answer
974
views
Can't click on 'Accept' cookies, how to find correct frame?
I am trying to click on 'Alles accepteren' (in english: Accept all) in the cookie pop-up but nothing seems to work. It probably has to do with focusing on the right window. Any help would be ...
0
votes
0
answers
33
views
Not able to locate the element with classname/xpath/Css selector in selenium python
Not able to locate the element with classname/xpath/Css selector in selenium python. Please find below the code
Create new account
85
votes
4
answers
216k
views
AttributeError: 'WebDriver' object has no attribute 'find_element_by_xpath'
from selenium import webdriver
import time
test = webdriver.Chrome()
test.get('https://docs.google.com/forms/d/e/1FAIpQLSeYUmAYYZNtbU8t8MRxwJo- d1zkmSaEHodJXs78RzoG0yFY2w/viewform')
time....
0
votes
1
answer
328
views
Collecting all links in the main page and sub-pages
I am trying make a script collect all links in main and sub-pages
For example, I need to collect example.com, example.com/link1, example.com/link1/sub-link1, ...
Please check my code
import csv
from ...
0
votes
0
answers
233
views
Let python check if a condition is True throughout the duration of a function
The function launch_setup() opens instagram, signs in and performs a few other initial functions. Sometimes, an popup appears in instagram that needs to be closed before proceeding. This can appear ...