@@ -10,6 +10,8 @@ import scala.util.control.NonFatal
10
10
11
11
import java .util .concurrent .{ConcurrentLinkedQueue , Executors }
12
12
import java .util .function .Consumer
13
+ import java .nio .file .Path
14
+ import java .net .URL
13
15
14
16
private sealed class SeleniumRun (
15
17
driver : WebDriver with JavascriptExecutor ,
@@ -129,20 +131,19 @@ private[selenium] object SeleniumRun {
129
131
newRun : Ctor [T ], failed : Throwable => T ): T = {
130
132
validator.validate(runConfig)
131
133
132
- val scripts = input.map {
133
- case Input .Script (s) => s
134
- case _ => throw new UnsupportedInputException (input)
134
+ var scripts : Seq [Path ] = Seq .empty
135
+ var modules : Seq [Path ] = Seq .empty
136
+
137
+ input.foreach {
138
+ case Input .Script (s) => scripts :+= s
139
+ case Input .ESModule (s) => modules :+= s
140
+ case _ => throw new UnsupportedInputException (input)
135
141
}
136
142
137
143
try {
138
144
withCleanup(FileMaterializer (config.materialization))(_.close()) { m =>
139
- val allScriptURLs = (
140
- m.materialize(" setup.js" , JSSetup .setupCode(enableCom)) +:
141
- scripts.map(m.materialize)
142
- )
143
-
144
- val page = m.materialize(" scalajsRun.html" , htmlPage(allScriptURLs))
145
-
145
+ val setupJsUrl = m.materialize(" setup.js" , JSSetup .setupCode(enableCom))
146
+ val page = m.materialize(" scalajsRun.html" , htmlPage(setupJsUrl, input, m))
146
147
withCleanup(newDriver())(maybeCleanupDriver(_, config)) { driver =>
147
148
driver.navigate().to(page)
148
149
@@ -171,13 +172,25 @@ private[selenium] object SeleniumRun {
171
172
private def maybeCleanupDriver (d : WebDriver , config : SeleniumJSEnv .Config ) =
172
173
if (! config.keepAlive) d.close()
173
174
174
- private def htmlPage (scripts : Seq [java.net.URL ]): String = {
175
- val scriptTags =
176
- scripts.map(path => s " <script src=' ${path.toString}'></script> " )
175
+ private def htmlPage (setupJsUrl : URL , input : Seq [Input ], materializer : FileMaterializer ): String = {
176
+ val setupJs = s " <script src=' ${setupJsUrl.toString}'></script> "
177
+
178
+ val tags = input.map {
179
+ case Input .Script (path) =>
180
+ val url = materializer.materialize(path)
181
+ s " <script src=' ${url.toString}'></script> "
182
+ case Input .ESModule (path) =>
183
+ val url = materializer.materialize(path)
184
+ s " <script type='module' src=' ${url.toString}'></script> "
185
+ case _ => throw new UnsupportedInputException (input)
186
+ }
187
+
188
+ val allTags = setupJs +: tags
189
+
177
190
s """ <html>
178
191
| <meta charset="UTF-8">
179
192
| <body>
180
- | ${scriptTags .mkString(" \n " )}
193
+ | ${allTags .mkString(" \n " )}
181
194
| </body>
182
195
|</html>
183
196
""" .stripMargin
0 commit comments