// jshint unused: false
'use strict';
/**
* Methods to be implemented in the future
*
* @hideconstructor
*/
class FutureAriaDriver {
/**
* Open a section within an {@link
* https://w3c.github.io/aria-practices/#accordion accordian}.
*
* @param {string} name - the {@link https://w3c.github.io/accname/
* accessible name} of the target section
*
* @throws When an element with the specified accessible name cannot be
* located
* @throws When the target element does not include a button
* @throws When {@link AriaDriver#use using} the target element does not
* set {@link https://w3c.github.io/aria/#aria-expanded the
* `aria-expanded` attribute} of the contained button
*/
async openAccordian(name) {}
}