mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
1. Rename "compose.web" to "compose.html" in Gradle DSL 2. Rename maven artifacts (with backward compatible "relocation" artifact) 3. Rename "web" folder to "html" Will do in support/1.4.0 branch 1. Move examples/web-* to examples/html/* 2. Rename Tutorials/Web to Tutorials/HTML 3. Rename "Compose for Web" to "Compose HTML Library" in the tutorials
13 lines
437 B
Markdown
13 lines
437 B
Markdown
## Prerequisites for running Selenium tests
|
|
|
|
As of now Selenium tests are turned on by default.
|
|
The minimal requirement for running this tests is to have Chrome
|
|
and chromedriver installed on your machine. Currently, we
|
|
don't install Chrome via gradle scripts, so if you are running
|
|
tests locally **make sure you have Chrome installed**.
|
|
|
|
For installing chrome driver just run following command:
|
|
```kotlin
|
|
./gradlew installWebDrivers
|
|
```
|