All Questions
177 questions
0
votes
0
answers
31
views
Instagram scroll through comments Selenium Python
I came across this situation, I need to scroll through the instagram comments to the end, but only this code works for Selenium:
driver.execute_script("arguments[0].scrollTop = arguments[0]....
-1
votes
1
answer
48
views
Python Selenium nested div and iframe in html page
I want to access a button in a nested html page: multiple div and iframe
A button is located in a complex html page. How to switch the driver to the corresponding frame.
driver.find_element(By....
...
-1
votes
2
answers
53
views
unable to click on webelement with selenium ActionsChain or javascript click as it refreshes the page and gives StaleElementReferenceError
I'm trying to close a cookie consent pop-up on a site https://www.meinschiff.com/. I used selenium webdriver for chrome to find the close and accept div element and click on whichever is found first. ...
0
votes
1
answer
197
views
Detect button click with selenium-wire in python
I want to take a full screenshot of a web page and save the file in png format after the submit button has been clicked. How can this be done using selenium-wire in python?
I tried the following but ...
0
votes
0
answers
19
views
Unable to locate web element using Selenium Webdriver in python
I want to provide a text input to the below Web element.
<input class="lui-search__input ng-pristine ng-valid ng-empty ng-valid-maxlength ng-touched" maxlength="5000" q-...
0
votes
1
answer
55
views
Webscraping a Javascript page using Selenium in python.. however unable to get page content and getting error
I am working on Webscraping of a URL https://data.cms.gov/tools/mapping-medicare-disparities-by-population using below code. I am unable to get the HTML code so that can traverse through the tags. I ...
0
votes
1
answer
34
views
Is it possible to acquire graph data of a specific site using Python?
Is it possible to scrape the graph data of this site using Python's requests or selenium?
I am looking where the original data of the graph is.
0
votes
1
answer
304
views
Getting chrome console output using python selenium
Hello I'm very new to both selenium and chrome console. what I'm trying to do is to get the output from chrome console, after typing a line of java script, and I just need the output, not the entire ...
0
votes
0
answers
55
views
How to iterate over WebElements object and generate Xpath for it while executing test case?
In RobotFramework 5.0. I have a keyword as below:
Scroll To Element
[Documentation] Scroll to the element on a page.
... This keyword uses javascript because the internal ...
0
votes
1
answer
59
views
Selenium match attribute from outerHTML using Python3
I'm trying to match the attribute "translate=subscriptions" from the following outerHTML:
<a class="btn btn-info ng-scope" translate="subscriptions" href="...
1
vote
1
answer
725
views
Clicked on element that has x-click with Python Selenium but it do not redirect
I am trying to scrape the url given below with python selenium.
https://www.rtilinks.com/?5b5483ba2d=...
0
votes
0
answers
245
views
Table on Webpage not visible in view page source and inspect option not available on right click it. How to automate clicking using selenium + python
I am trying to automated the process of logging in to a website, and downloading data using Selenium + Python. The data is visible on webpage in a table format, each row represents a folder, we need ...
0
votes
1
answer
750
views
Submit Request from JavaScript to solve ReCaptcha in Python
I am Currently trying to log into a Site via Selenium and 2Captcha.
Everything work fine right now except the Captcha.
When I try to submit the request, I get an Error.
#!/usr/bin/python3
from ...
1
vote
1
answer
444
views
How to web scraping BeautifulSoup with attribute application/ld+json and data-react-helmet?
I'm new to web scraping using python. I've coded to pull data from a job portal site using Selenium and BeautifulSoup. The flow I do is:
Scraping the entire a link of job posting on the job portal ...