Skip to content

Instantly share code, notes, and snippets.

@lfryc
Created April 13, 2012 08:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lfryc/2375140 to your computer and use it in GitHub Desktop.
Save lfryc/2375140 to your computer and use it in GitHub Desktop.
New Drone configuration proposal (brain-storming section)
# the driver implementation selection using implementationClass is pain in the ass, consider following
<extension:drone>
<firefoxDriver>
</firefoxDriver>
</extension:drone>
@gpoul
Copy link

gpoul commented Apr 16, 2012

yes, something like the following will be more readable:

 <extension:drone>
    <firefoxDriver>
      <somePropertyList>
        <somePropertyEntryName>someValue</somePropertyEntryName>
        <somePropertyEntryName2>123</somePropertyEntryName2>
      </somePropertyList>
      <someOtherProperty>true</someOtherProperty>
    </firefoxDriver>
 </extension:drone>

but the only problem I have with that kind of "simplification" is that it's not obvious for the user to know the data type the fields of these objects have.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment