Python Forum
How can get url from JavaScript in Selenium (Python 3)?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How can get url from JavaScript in Selenium (Python 3)?
#1
I write parser for https://www.oddsportal.com

See this url - https://www.oddsportal.com/soccer/englan...d-nNNqedbR

I faced with next problem. Need get urls from this block
[Image: RBcgO.png]

How I can get all absolute urls from this menu?
If it is a long time to write all urls, can write only url from "Home/Away":"2nd Half", for example.

I think, this urls forming by JS (and Ajax mb) and I don't know, how I can walk on the urls.
[Image: 3TZ6P.png]
[Image: z5jOF.png]

def main(url):
    options = webdriver.ChromeOptions()
    options.add_argument('headless')
    driver = webdriver.Chrome(chrome_options=options)
    driver.get(url)

def get_url():
    base_url = 'https://www.oddsportal.com/soccer/england/premier-league/wolves-newcastle-utd-nNNqedbR'
    for i in ???:
        first_part = ???
        second_part = ???
        url = base_url + '#' + first_part + ';' + 'second_part'
        main(url)
Reply


Messages In This Thread
How can get url from JavaScript in Selenium (Python 3)? - by m0ntecr1st0 - Feb-03-2019, 05:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Using Python request without selenium on html form with javascript onclick submit but eraosa 0 3,194 Jan-09-2021, 06:08 PM
Last Post: eraosa
  question about using javascript on python selenium Kai 1 1,907 Apr-12-2020, 04:28 AM
Last Post: Larz60+
  Scrapping javascript website with Selenium where pages randomly fail to load JuanJuan 14 7,251 Dec-27-2019, 12:32 PM
Last Post: JuanJuan
  Unable to access javaScript generated data with selenium and headless FireFox. pjn4 0 2,557 Aug-04-2019, 11:10 AM
Last Post: pjn4
  Python - Scrapy Javascript Pagination (next_page) Baggelhsk95 3 10,019 Oct-08-2018, 01:20 PM
Last Post: stranac
  scraping javascript websites with selenium DoctorEvil 1 3,385 Jun-08-2018, 06:40 PM
Last Post: DoctorEvil
  Error in Selenium: CRITICAL:root:Selenium module is not installed...Exiting program. AcszE 1 3,647 Nov-03-2017, 08:41 PM
Last Post: metulburr
  Python wsgi example: problem with javascript imonike 12 10,035 Jun-19-2017, 03:27 PM
Last Post: imonike
  selenium bypass javascript popup box metulburr 6 8,461 Jun-02-2017, 07:15 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020