как исключить «https://raw.githubusercontent.com/GoogleChrome/accessibility-developer-tools/stable/dist/js/axs_testing.js » url в python selenium?

#python #selenium-webdriver

#python #selenium-webdriver

Вопрос:

Я пытаюсь написать приведенный ниже код, используя python selenium, но не смог этого сделать, поскольку я новичок в python и selenium. Может кто-нибудь, пожалуйста, помочь?

 val driver = org.openqa.selenium.firefox.FirefoxDriver //use driver of your choice
val jse = driver.asInstanceOf[JavascriptExecutor]
jse.executeScript(scala.io.Source.fromURL("https://raw.githubusercontent.com/GoogleChrome/"  
   "accessibility-developer-tools/stable/dist/js/axs_testing.js").mkString)
val report = jse.executeScript("var results = axs.Audit.run();return axs.Audit.createReport(results);")
println(report)