2

UIWebViewを使用してデータを自動入力するときに、RegsExを使用してログインフォームを見つける方法は?

次のコードを使用して、すべてのフォーム データを取得しました。

int NoOfForms = [[self.browser stringByEvaluatingJavaScriptFromString:@"document.forms.length"] intValue];

NSMutableArray *formData = [[NSMutableArray alloc] initWithCapacity:0];

for (int i = 0 ;  i < NoOfForms ; i++) 
{
    // total number of elements in each form
    int elementsInForm = [[self.browser stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.forms[%d].elements.length",i]] intValue];
    for (int j = 0; j < elementsInForm; j++) 
    {
        // element id of each element
        NSString *elementID = [NSString stringWithFormat:@"document.forms[%d].elements[%d].id",i,j];
        // element value of each element
        NSString *elementValue = [NSString stringWithFormat:@"document.forms[%d].elements[%d].value",i,j];

        // dictionary for all values of each element  
        NSDictionary *elementData = [NSDictionary dictionaryWithObjectsAndKeys:
                                     [NSNumber numberWithInt:i],@"form No",
                                     [NSNumber numberWithInt:j],@"element No",
                                     [self.browser stringByEvaluatingJavaScriptFromString:elementID],@"elementID",
                                     [self.browser stringByEvaluatingJavaScriptFromString:elementValue],@"elementValue",nil];

        // add each element data to a mutable array.
        [formData addObject:elementData];
    }
}

また、次のコードを使用して、データをそれぞれのフィールドに戻します。

for (int i = 0 ; i < [dataArray count]; i++) 
{
    NSDictionary *elementDict = [dataArray objectAtIndex:i];

    int formNumber = [[elementDict objectForKey:@"form No"] intValue];
    int elementNumber = [[elementDict objectForKey:@"element No"] intValue];
    NSString *formElementID = [elementDict objectForKey:@"elementID"];
    NSString *formElementValue = [elementDict objectForKey:@"elementValue"];

    if ([[self.browser stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.forms[%d].elements[%d].id",formNumber,elementNumber]] isEqualToString:formElementID])
     {
          [self.browser stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.forms[%d].elements[%d].value='%@'",formNumber,elementNumber,formElementValue]];
     }

}

ログインフォームのみを送信したいのですが、どうやって見つけるのですか?

もう 1 つ問題が発生しています。コードでパスワードをフィールドに入力すると、mail.google.com などの一部の Web サイトでパスワード フィールドが空になります。この問題を解決するには?

更新: 現在、mail.google.com にはログインできましたが、belleandclive.com には同じようにログインできませんでした。このサイトは、ログイン フォームに何らかのセキュリティ対策を実装していますか?

4

1 に答える 1

2

どちらがログインフォームかはフォームデータかフォームIDで判断できると思いますよね?

したがって、ログイン フォーム ID がlogin-formの場合、次のコードを使用して送信できます。

NSString * js = @"document.getElementById('login-form').submit()";
[self.webview stringByEvaluatingJavaScriptFromString:js];

または、フォーム データに従って、どのインデックスがログイン フォームであるかを判断して、フォームを送信できます。

int index = ....// your judge code to get index
NSString * js = [NSString stringWithFormat:@"document.forms[%d].submit()", index];
[self.webview stringByEvaluatingJavaScriptFromString:js];
于 2012-04-06T07:01:28.073 に答える