<table id="state_table" class="table" width="100%">
<thead>
<tr>
<th class="column_checkbox disabled">
<th class="sortable desc" data-type="stateid">ID</th>
<th class="sortable" data-type="name">Name</th>
列ヘッダーでテーブルをソートする webdriver コードは
driver.findElement(By.cssSelector("th.sortable")).click();
これにより、表が ID 列でソートされます。data type="name" ではなく "Name" を使用して Name 列でテーブルを並べ替えるにはどうすればよいですか
ありがとう