mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
7eed93721c
* Added support of computed styles * Updated style updates * Fixed linter issues * Updated styles manipulation in static driver * Updated e2e tests * Updated methods * Updated e2e tests * Updated README
20 lines
415 B
Plaintext
20 lines
415 B
Plaintext
LET url = @lab.cdn.dynamic + "?redirect=/events"
|
|
LET doc = DOCUMENT(url, true)
|
|
LET pageSelector = "#page-events"
|
|
LET elemSelector = "#wait-no-style-content"
|
|
|
|
WAIT_ELEMENT(doc, pageSelector)
|
|
|
|
LET el = ELEMENT(doc, elemSelector)
|
|
LET prev = el.style
|
|
|
|
STYLE_SET(el, { color: "black", "font-size": "10px"})
|
|
|
|
WAIT(1000)
|
|
|
|
LET curr = el.style
|
|
|
|
T::EQ(curr.color, "rgb(0, 0, 0)")
|
|
T::EQ(curr["font-size"], "10px")
|
|
|
|
RETURN NONE |