All Questions
36 questions
0
votes
0
answers
95
views
Using Python Selenium with Chromedriver, unable to add text to a textarea in a way that AI Dungeon will accept as input
I'm trying to add text to AI Dungeon for a program that I am writing to build more complex systems on top of AI Dungeon.
I'm able to get it to this screen with Selenium:
But every method I've tried ...
0
votes
2
answers
1k
views
how can i send ENTER/RETURN key with javascript executor code in selenium python?
Hi all i am new to python selenium, i am in the process of automating a website but unfortunately the search text box of the website does not have any buttons to click once you enter the text
things i ...
20
votes
2
answers
2k
views
How to move / drag element from outside to iframe
I need to move element from outside an iframe into an iframe. My element panel is not part of iframe but my canvas is in the iframe and want to move element into it.
I tried below code :
...
1
vote
1
answer
241
views
scraping javascript content using selenium
I am trying scrape javascript content from a website using selenium and geckodriver but I am getting any data. Following is the javascript code
<div _ngcontent-c2="" class="header-wrapper">
...
3
votes
2
answers
1k
views
How can I read console log (e.g. messages like ok, connected..) of particular website by using a python coding?
I would like to know how to read console log output for a particular website using Python for the automation.
Currently i am trying to read console data using Selenium, but there is no function that ...
4
votes
1
answer
4k
views
selenium file upload without <input type="file"> element
I'm trying to upload my resume using selenium/python over here , under the Resume/CV Attach part.
When I inspect the Attach element, it shows up as <a data-source="attach" href="#">Attach</a&...
0
votes
0
answers
216
views
Alert not working in python selenium
I am writing a script in selenium webdriver and I want to handle an alert, but it's not working.
try:
WebDriverWait("browser", 3).until(EC.alert_is_present(),'Timed out waiting for PA creation ' +...
0
votes
0
answers
341
views
click a href link using selenium on python
I am trying to web scrape using selenium in Python. I find all the links on the webpage using
elems = self.driver.find_elements_by_xpath("//a[@href]")
Below are the attributes of the individual ...
-2
votes
1
answer
31
views
WebDriver Navigation Issues
I am attempting to click on a button in a web interface, however normal click functions fail so I have attempted to execute javascript, but to no avail. Any pointers would be appreciated.
The button ...
0
votes
1
answer
220
views
Selenium Element is Not Visible Exception on Already Triggered Area
I'm trying to automate entries on a this site: https://gleam.io/jtwmn/3d-printer-giveaway
I'm successfully able to click on the "Visit @nexi_tech on Instagram" link, and the blue button of the same ...
-2
votes
1
answer
502
views
Click on Javascript used for pagination using Selenium and Python.
I am new to selenium and currently using Python 2.7 for same. I want to click on some Javascripts which are being used for pagination in the website. I am adding the link to the page. Please help me ...
1
vote
1
answer
469
views
Python - selenium webdriver - cannot switch to registration pop-up
I am new to python (2.7) & selenium webdriver.
And I am trying to do registration for http://way2automation.com/way2auto_jquery/index.php
So far i got stuck at switching to the registration pop-...
1
vote
1
answer
150
views
Each first element of a pagination/list gets parsed twice on AJAX website - Selenium 3.0.2, Firefox webdriver, BeautifulSoup 4.5.1
I have been encountering for three days a very annoying problem with both Selenium and Bs4 - although I think Selenium is actually guilty (or rather my code).
Anyway, as a hundred people before me, I ...
3
votes
1
answer
2k
views
Select Javascript created element in Selenium Python
I have the following element in a web page.
<button type="submit" class="zsg-button_primary contact-submit-button track-ga-event" data-ga-category="contact" data-ga-action="email" data-ga-label="...
1
vote
1
answer
158
views
Cannot select element from a javascript webpage using Python scrapy and Selenium
I'm attempting to create an app that gathers some data. I'm using Python 2.7 with Scrapy and Selenium on Windows 10. I've done this with only a few web pages previously, however, I'm not able to ...