xxxxxxxxxx
<input aria-label="Username">
<label for="password-input">Password:</label>
<input id="password-input">
await page.getByLabel('Username').fill('john');
await page.getByLabel('Password').fill('secret');
xxxxxxxxxx
// Fill element with label text "Password" with "secret"
// Example: <label>Password <input type="password" /></label>
await page.getByLabel('Password').fill('secret');
xxxxxxxxxx
Type --> rnfc
import { View, Text } from 'react-native'
import React from 'react'
const ElevatedCard = () => {
return (
<View>
<Text>ElevatedCard</Text>
</View>
)
}
export default ElevatedCard