We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d151af3 commit 8f32937Copy full SHA for 8f32937
e2e/top.test.js
@@ -39,4 +39,12 @@ describe('test typing-lyrics top page', () => {
39
const captionText = await captionElement.getText()
40
assert.equal(captionText.includes('UTAWO UTAOU'), true)
41
})
42
+
43
+ it('get caption container', async () => {
44
+ const captionElement = await driver.findElement(
45
+ selenium.By.className('caption-container')
46
+ )
47
+ const visible = await captionElement.isDisplayed()
48
+ assert.equal(visible, true)
49
+ })
50
0 commit comments