python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to click the cross on the banner at site www.di.se with Selenium?
Description: I work on scraping the stocks on site www.di.se. The site content is blocked by a banner. I have always clicked the cross by the code:
driver.findElement(By.id("ElementName")).c...

torbjörn södheim
Votes: 0
Answers: 1
Using text attribute to retrieve text with Selenium in Python
I'm trying to execute this:
driver.get(websitelink)
sleep(3)
element = driver.find_element_by_id("canvasCaption").text
print('text is:',element)
In order to get text from here :
<div cl...
madacmjtr
Votes: 0
Answers: 1
Waiting for hidden element to appear with selenium python
To explain the context, let us take an example of a login page.
Say a login page allows the user to enter the password only after 1 minute of wait time after entering the user name (assume please).
So...
Meet
Votes: 0
Answers: 1
Using Selenium and Python to Click on a button below searched element
I am trying to test downloading a file from a website using selenium on python.
The website has peculiar design where the file name appears as a text element above the button to download the file. Th...
Meet
Votes: 0
Answers: 1