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
How to create a circle with a text in the middle and across the edges in CSS?
If possible I would like to create this image in CSS. So far I have not been able to do anything even close to those edges with text. Is it even possible and if so how should I approach it?
IonicEcommerce
Votes: 0
Answers: 1
Puppeteer: select by class, but only first element
There are several div classes "jadejhlu" containing a a=href link. How can I select only the first div class to get only one link? I tried
const selector = 'div.jadejhlu > a'
const links ...

Klaus
Votes: 0
Answers: 2