Browse Subversion Repository
Contents of /cfneo/branches/imaiworks/cfneotools/at4ie2/trunk/at4ie2/src/main/java/watij/runtime/ie/IE2.java
Parent Directory
| Revision Log
Revision 311 -
( show annotations)
( download)
Wed Feb 25 01:20:52 2009 UTC
(15 years, 1 month ago)
by imaitakafumi
File MIME type: text/plain
File size: 370 byte(s)
ConfirmDialog対応に必要なExtension。
| 1 |
package watij.runtime.ie; |
| 2 |
|
| 3 |
import watij.dialogs.ConfirmDialog; |
| 4 |
|
| 5 |
public class IE2 extends IE { |
| 6 |
|
| 7 |
@Override |
| 8 |
public ConfirmDialog confirmDialog() throws Exception { |
| 9 |
bringToFront(); |
| 10 |
ConfirmDialog dialog = IEConfirmDialogJP.findConfirmDialog(this); |
| 11 |
if (dialog.exists()) { |
| 12 |
return dialog; |
| 13 |
} else { |
| 14 |
return super.confirmDialog(); |
| 15 |
} |
| 16 |
} |
| 17 |
|
| 18 |
} |
|