blob: 0c81d15724fb739c820afa4f3f0929b55117b88d [file] [log] [blame]
package org.apache.tapestry5.integration.app1
import org.apache.tapestry5.integration.GroovyTapestryCoreTestCase
import org.apache.tapestry5.test.TapestryTestConfiguration
import org.testng.annotations.Test
@TapestryTestConfiguration(webAppFolder = "src/test/app1")
class BeanEditorWithFormFragmentTests extends GroovyTapestryCoreTestCase
{
/** TAP5-2308 */
@Test
void beaneditor_with_formfragment_and_triggerfragment_mixin()
{
open "/BeanEditorWithFormFragmentDemo"
assert isVisible("css=#address")
click "css=#canBeDoneRemotely"
assert !isVisible("css=#address")
}
}