Python Selenium访问HTML源代码 - 搜索后

时间:2016-02-03 06:11:52

标签: python selenium

源代码:

#import "ViewController3.h"
#import "AppDelegate.h"
#import "FMDatabase.h"


@interface AppDelegate ()

@end

@implementation AppDelegate
@synthesize dirPaths,docsDir,database;


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    //get the directory
    dirPaths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);

    docsDir = [dirPaths objectAtIndex:0];
    NSString *path = [docsDir stringByAppendingPathComponent:@"database.sqlite"];

    database = [FMDatabase databaseWithPath:path];

    [database open];
    [database executeUpdate:@"CREATE TABLE users (username text primary key, email text, password text, cnfpassword text) " ];

    NSLog(@"docsDir : %@",docsDir);

    return YES;
}

上面是代码。 我想从" http://www.thehindu.com/"中删除数据,它会搜索"联合利华"搜索框中的单词并重定向到结果页

Link for Search Page

现在我有一个问题,我怎样才能获得搜索到的页面的源代码。 基本上我想要与" Unilever"。

相关的新闻

1 个答案:

答案 0 :(得分:0)

您可以在<body>中找到文字:

body = driver.find_element_by_tag_name("body")
bodyText = body.get_attribute("innerText")

然后你可以在bodyText中找到你的关键字。