mirror of
https://github.com/web-arena-x/webarena.git
synced 2026-02-06 11:16:53 +00:00
40 lines
969 B
Python
40 lines
969 B
Python
# websites domain
|
|
REDDIT = ""
|
|
SHOPPING = ""
|
|
SHOPPING_ADMIN = ""
|
|
GITLAB = ""
|
|
WIKIPEDIA = ""
|
|
MAP = ""
|
|
HOMEPAGE = ""
|
|
|
|
assert (
|
|
REDDIT
|
|
and SHOPPING
|
|
and SHOPPING_ADMIN
|
|
and GITLAB
|
|
and WIKIPEDIA
|
|
and MAP
|
|
and HOMEPAGE
|
|
), "Please setup the URLs to each site"
|
|
|
|
ACCOUNTS = {
|
|
"reddit": {"username": "MarvelsGrantMan136", "password": "test1234"},
|
|
"gitlab": {"username": "byteblaze", "password": "hello1234"},
|
|
"shopping": {
|
|
"username": "emma.lopez@gmail.com",
|
|
"password": "Password.123",
|
|
},
|
|
"shopping_admin": {"username": "admin", "password": "admin1234"},
|
|
"shopping_site_admin": {"username": "admin", "password": "admin1234"},
|
|
}
|
|
|
|
URL_MAPPINGS = {
|
|
REDDIT: "http://reddit.com",
|
|
SHOPPING: "http://onestopmarket.com",
|
|
SHOPPING_ADMIN: "http://luma.com/admin",
|
|
GITLAB: "http://gitlab.com",
|
|
WIKIPEDIA: "http://wikipedia.org",
|
|
MAP: "http://openstreetmap.org",
|
|
HOMEPAGE: "http://homepage.com",
|
|
}
|