[JBoss JIRA] (ARQ-949) Warp: Improve serialization by using Externalizable instead of Serializable
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/ARQ-949?page=com.atlassian.jira.plugin.sy... ]
Lukáš Fryč updated ARQ-949:
---------------------------
Description:
What are reasons for {{Externalizable}}:
* no need to define {{serialVersionUID}}
What are requirements:
* custom {{readObject/writeObject}} implementation in {{Inspection}}
* or customized {{ObjectOutputStream}}
was:
What are reasons for {{Externalizable}}:
* no need to define {{serialVersionUID}}
What are requirements:
* custom {{readObject/writeObject}} implementation in {{ServerAssertion}}
* or customized {{ObjectOutputStream}}
> Warp: Improve serialization by using Externalizable instead of Serializable
> ---------------------------------------------------------------------------
>
> Key: ARQ-949
> URL: https://issues.jboss.org/browse/ARQ-949
> Project: Arquillian
> Issue Type: Enhancement
> Components: Extension - Warp
> Reporter: Lukáš Fryč
> Fix For: warp_1.0.0.Beta1
>
>
> What are reasons for {{Externalizable}}:
> * no need to define {{serialVersionUID}}
> What are requirements:
> * custom {{readObject/writeObject}} implementation in {{Inspection}}
> * or customized {{ObjectOutputStream}}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months
[JBoss JIRA] (ARQ-1340) Drone webdriver is not created during @BeforeClass
by Matous Jobanek (JIRA)
[ https://issues.jboss.org/browse/ARQ-1340?page=com.atlassian.jira.plugin.s... ]
Matous Jobanek reassigned ARQ-1340:
-----------------------------------
Assignee: Matous Jobanek
> Drone webdriver is not created during @BeforeClass
> --------------------------------------------------
>
> Key: ARQ-1340
> URL: https://issues.jboss.org/browse/ARQ-1340
> Project: Arquillian
> Issue Type: Bug
> Components: Extension - Drone
> Affects Versions: drone_1.1.1.Final
> Environment: Arquillian JUnit Container 1.0.3.Final
> Arquillian Graphene Webdriver 2.0.0.Alpha3
> Arquillian Drone dependencies and Selenium dependencies 1.1.1.Final
> Arquillian Core dependencies 1.0.3.Final
> junit 4.8.1
> jdk 1.6
> Reporter: Alex Okrushko
> Assignee: Matous Jobanek
> Fix For: drone_2.0.0.Beta1
>
>
> Drone webdriver is not created during @BeforeClass, however *is created during @Before or if called by GrapheneContext.getProxy()*
> The following does NOT work:
> {code:java}
> @RunWith(Arquillian.class)
> public class TestDroneLogin {
> @Drone
> private static WebDriver driver;
>
> @BeforeClass
> public static void setup(){
> //GrapheneContext.getProxy().navigate().to("http://google.com");
> driver.navigate().to("http://google.com");
> }
>
> @Test
> public void testInput(){
> driver.findElement(By.cssSelector("input#gbqfq"));
> }
> }
> {code}
> However, if I use {{GrapheneContext.getProxy()}} instead of {{driver}}, everything works as expected:
> {code:java}
> @BeforeClass
> public static void setup(){
> GrapheneContext.getProxy().navigate().to("http://google.com");
> }
> {code}
> ALSO, if {{@Before}} is used then Drone webdriver is created as expected, so this problem is specific to {{@BeforeClass}}
--
This message was sent by Atlassian JIRA
(v6.4.11#64026)
10 years, 2 months